aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install
diff options
context:
space:
mode:
authorRahul R <rahulr92@gmail.com>2012-04-09 01:43:44 +0530
committerRahul R <rahulr92@gmail.com>2012-04-09 01:43:44 +0530
commit303748b02db2aa76391f60770c292edf45cee360 (patch)
tree2447c191d0750058cfd9cf6c5b122fdbb96f0a3a /phpBB/install
parent2dec700aabcb8b5bebf707b41378ede61512e745 (diff)
downloadforums-303748b02db2aa76391f60770c292edf45cee360.tar
forums-303748b02db2aa76391f60770c292edf45cee360.tar.gz
forums-303748b02db2aa76391f60770c292edf45cee360.tar.bz2
forums-303748b02db2aa76391f60770c292edf45cee360.tar.xz
forums-303748b02db2aa76391f60770c292edf45cee360.zip
[ticket/10650] Added space after if and comment
Added space in proper places in database_update.php. Also corrected language entry of ELLIPSIS to utf8 PHPBB3-10650
Diffstat (limited to 'phpBB/install')
-rw-r--r--phpBB/install/database_update.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php
index 4f5fe142c9..5c70a07f1e 100644
--- a/phpBB/install/database_update.php
+++ b/phpBB/install/database_update.php
@@ -2394,10 +2394,10 @@ function change_database_data(&$no_updates, $version)
$sql = 'INSERT INTO ' . STYLES_TABLE . " (style_name, style_copyright, style_active, style_path, bbcode_bitfield, style_parent_id, style_parent_tree) VALUES ('prosilver', '&copy; phpBB Group', 1, 'prosilver', 'kNg=', 0, '')";
_sql($sql, $errored, $error_ary);
- //Create config value for displaying last subject on forum list
- if(!isset($config['display_last_subject']))
+ // Create config value for displaying last subject on forum list
+ if (!isset($config['display_last_subject']))
{
- $config->set("display_last_subject", '1');
+ $config->set('display_last_subject', '1');
}
$no_updates = false;