aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/db/migration
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2014-11-01 23:22:44 +0100
committerMarc Alexander <admin@m-a-styles.de>2014-11-01 23:53:53 +0100
commitd1f85f0de3dd958050df39ea79d2e7cd14147b07 (patch)
tree51d326082590cad960a97165ca84e4fd0861880e /phpBB/phpbb/db/migration
parentbe8b5a41c81853cd8f7ba9ee97b68aa512617366 (diff)
downloadforums-d1f85f0de3dd958050df39ea79d2e7cd14147b07.tar
forums-d1f85f0de3dd958050df39ea79d2e7cd14147b07.tar.gz
forums-d1f85f0de3dd958050df39ea79d2e7cd14147b07.tar.bz2
forums-d1f85f0de3dd958050df39ea79d2e7cd14147b07.tar.xz
forums-d1f85f0de3dd958050df39ea79d2e7cd14147b07.zip
[ticket/13263] Only install/set prosilver if no style available
Users that have a nonexistent style selectd will revert back to the default style. PHPBB3-13263
Diffstat (limited to 'phpBB/phpbb/db/migration')
-rw-r--r--phpBB/phpbb/db/migration/data/v31x/style_update.php52
1 files changed, 24 insertions, 28 deletions
diff --git a/phpBB/phpbb/db/migration/data/v31x/style_update.php b/phpBB/phpbb/db/migration/data/v31x/style_update.php
index b0ac80245e..9f01514ff6 100644
--- a/phpBB/phpbb/db/migration/data/v31x/style_update.php
+++ b/phpBB/phpbb/db/migration/data/v31x/style_update.php
@@ -29,16 +29,25 @@ class style_update extends \phpbb\db\migration\migration
public function update_installed_styles()
{
- // First check if prosilver is properly installed
- $sql = 'SELECT style_id, style_active
- FROM ' . $this->table_prefix . "styles
- WHERE style_name = 'prosilver'";
+ // Get all currently available styles
+ $styles = $this->find_style_dirs();
+ $style_paths = $style_ids = array();
+
+ $sql = 'SELECT style_path, style_id
+ FROM ' . $this->table_prefix . 'styles';
$result = $this->db->sql_query($sql);
- $row = $this->db->sql_fetchrow($result);
+ while ($styles_row = $this->db->sql_fetchrow())
+ {
+ if (in_array($styles_row['style_path'], $styles))
+ {
+ $style_paths[] = $styles_row['style_path'];
+ $style_ids[] = $styles_row['style_id'];
+ }
+ }
$this->db->sql_freeresult($result);
- // Make sure prosilver is installed
- if (empty($row) || !isset($row['style_id']))
+ // Install prosilver if no style is available and prosilver can be installed
+ if (empty($style_paths) && in_array('prosilver', $styles))
{
// Try to parse config file
$cfg = parse_cfg_file($this->phpbb_root_path . 'styles/prosilver/style.cfg');
@@ -46,7 +55,7 @@ class style_update extends \phpbb\db\migration\migration
// Stop running this if prosilver doesn't exist
if (empty($cfg))
{
- return;
+ throw new \RuntimeException('No styles available and could not fall back to prosilver.');
}
// Check data
@@ -75,31 +84,18 @@ class style_update extends \phpbb\db\migration\migration
$row = array('style_id' => $this->db->sql_nextid());
$this->db->sql_transaction('commit');
- }
- // Make sure prosilver is activated
- else if (!isset($row['style_active']) || !$row['style_active'])
- {
- $sql = 'UPDATE ' . STYLES_TABLE . ' SET style_active = 1 WHERE style_id = ' . $row['style_id'];
- $this->db->sql_query($sql);
- }
-
- // Get all currently available styles
- $styles = $this->find_style_dirs();
- // Get IDs of the available styles
- $style_ids = array();
- $sql = 'SELECT DISTINCT(style_id) AS style_id
- FROM ' . $this->table_prefix . 'styles
- WHERE ' . $this->db->sql_in_set('style_name', $styles);
- $result = $this->db->sql_query($sql);
- while ($styles_row = $this->db->sql_fetchrow())
+ // Set prosilver to default style
+ $this->config->set('default_style', $row['style_id']);
+ }
+ else if (empty($styles) && empty($available_styles))
{
- $style_ids[] = $styles_row['style_id'];
+ throw new \RuntimeException('No valid styles available');
}
- $this->db->sql_freeresult($result);
+ // Reset users to default style if their user_style is nonexistent
$sql = 'UPDATE ' . $this->table_prefix . "users
- SET user_style = {$row['style_id']}
+ SET user_style = {$this->config['default_style']}
WHERE " . $this->db->sql_in_set('user_style', $style_ids, true);
$this->db->sql_query($sql);
}