diff options
author | Nils Adermann <naderman@naderman.de> | 2012-04-19 03:06:40 +0200 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2012-04-19 03:06:40 +0200 |
commit | ea8f83de6f87af8fc9413e1be557953cabe8811e (patch) | |
tree | 1fb2cc013b7f635f64669ed605443badac303906 /phpBB/install/database_update.php | |
parent | b3e42635ca201eea2fa82fb057f021768daf6786 (diff) | |
download | forums-ea8f83de6f87af8fc9413e1be557953cabe8811e.tar forums-ea8f83de6f87af8fc9413e1be557953cabe8811e.tar.gz forums-ea8f83de6f87af8fc9413e1be557953cabe8811e.tar.bz2 forums-ea8f83de6f87af8fc9413e1be557953cabe8811e.tar.xz forums-ea8f83de6f87af8fc9413e1be557953cabe8811e.zip |
[ticket/10759] Fix whitespace in database_update.php
PHPBB3-10759
Diffstat (limited to 'phpBB/install/database_update.php')
-rw-r--r-- | phpBB/install/database_update.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index 0b33168496..cddc1c4164 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -2310,7 +2310,7 @@ function change_database_data(&$no_updates, $version) _add_modules($modules_to_install); $sql = 'DELETE FROM ' . MODULES_TABLE . " - WHERE (module_basename = 'styles' OR module_basename = 'acp_styles') AND (module_mode = 'imageset' OR module_mode = 'theme' OR module_mode = 'template')"; + WHERE (module_basename = 'styles' OR module_basename = 'acp_styles') AND (module_mode = 'imageset' OR module_mode = 'theme' OR module_mode = 'template')"; _sql($sql, $errored, $error_ary); // Localise Global Announcements @@ -2474,15 +2474,15 @@ function change_database_data(&$no_updates, $version) // Remove old styles tables $changes = array( - 'drop_columns' => array( - STYLES_TABLE => array( + 'drop_columns' => array( + STYLES_TABLE => array( 'imageset_id', 'template_id', 'theme_id', ), ), - 'drop_tables' => array( + 'drop_tables' => array( STYLES_IMAGESET_TABLE, STYLES_IMAGESET_DATA_TABLE, STYLES_TEMPLATE_TABLE, |