mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/10601] Database updating code v2
Added the space after the (int) as requested PHPBB3-10601
This commit is contained in:
parent
80da19ca7c
commit
85ebbbaec4
1 changed files with 19 additions and 19 deletions
|
@ -2769,7 +2769,7 @@ function change_database_data(&$no_updates, $version)
|
||||||
|
|
||||||
$sql = 'UPDATE ' . MODULES_TABLE . '
|
$sql = 'UPDATE ' . MODULES_TABLE . '
|
||||||
SET module_basename = \'ucp_pm\'
|
SET module_basename = \'ucp_pm\'
|
||||||
WHERE module_id = ' . (int)$row['parent_id'];
|
WHERE module_id = ' . (int) $row['parent_id'];
|
||||||
|
|
||||||
_sql($sql, $errored, $error_ary);
|
_sql($sql, $errored, $error_ary);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue