mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[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
This commit is contained in:
parent
2dec700aab
commit
303748b02d
2 changed files with 4 additions and 4 deletions
|
@ -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', '© phpBB Group', 1, 'prosilver', 'kNg=', 0, '')";
|
$sql = 'INSERT INTO ' . STYLES_TABLE . " (style_name, style_copyright, style_active, style_path, bbcode_bitfield, style_parent_id, style_parent_tree) VALUES ('prosilver', '© phpBB Group', 1, 'prosilver', 'kNg=', 0, '')";
|
||||||
_sql($sql, $errored, $error_ary);
|
_sql($sql, $errored, $error_ary);
|
||||||
|
|
||||||
//Create config value for displaying last subject on forum list
|
// Create config value for displaying last subject on forum list
|
||||||
if(!isset($config['display_last_subject']))
|
if (!isset($config['display_last_subject']))
|
||||||
{
|
{
|
||||||
$config->set("display_last_subject", '1');
|
$config->set('display_last_subject', '1');
|
||||||
}
|
}
|
||||||
|
|
||||||
$no_updates = false;
|
$no_updates = false;
|
||||||
|
|
|
@ -169,7 +169,7 @@ $lang = array_merge($lang, array(
|
||||||
),
|
),
|
||||||
|
|
||||||
'EDIT_POST' => 'Edit post',
|
'EDIT_POST' => 'Edit post',
|
||||||
'ELLIPSIS' => ' …', // ...
|
'ELLIPSIS' => ' ...',
|
||||||
'EMAIL' => 'E-mail', // Short form for EMAIL_ADDRESS
|
'EMAIL' => 'E-mail', // Short form for EMAIL_ADDRESS
|
||||||
'EMAIL_ADDRESS' => 'E-mail address',
|
'EMAIL_ADDRESS' => 'E-mail address',
|
||||||
'EMAIL_SMTP_ERROR_RESPONSE' => 'Ran into problems sending e-mail at <strong>Line %1$s</strong>. Response: %2$s.',
|
'EMAIL_SMTP_ERROR_RESPONSE' => 'Ran into problems sending e-mail at <strong>Line %1$s</strong>. Response: %2$s.',
|
||||||
|
|
Loading…
Add table
Reference in a new issue