diff options
| author | Andreas Fischer <bantu@phpbb.com> | 2012-06-20 13:56:11 +0200 |
|---|---|---|
| committer | Andreas Fischer <bantu@phpbb.com> | 2012-07-03 01:02:42 +0200 |
| commit | 81d5327e4411a7044f1c90e002505cad309372d6 (patch) | |
| tree | 49fd0c62a0c41424cae615300e8524673945fdef /phpBB/install/install_install.php | |
| parent | 155c93d71a84fc9e47287070260623bb1fb6168f (diff) | |
| download | forums-81d5327e4411a7044f1c90e002505cad309372d6.tar forums-81d5327e4411a7044f1c90e002505cad309372d6.tar.gz forums-81d5327e4411a7044f1c90e002505cad309372d6.tar.bz2 forums-81d5327e4411a7044f1c90e002505cad309372d6.tar.xz forums-81d5327e4411a7044f1c90e002505cad309372d6.zip | |
[ticket/10937] Comment removal functions: Restore backward compatibility
PHPBB3-10937
Diffstat (limited to 'phpBB/install/install_install.php')
| -rw-r--r-- | phpBB/install/install_install.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/install/install_install.php b/phpBB/install/install_install.php index 8e3fe0387c..f1003b07d7 100644 --- a/phpBB/install/install_install.php +++ b/phpBB/install/install_install.php @@ -1164,7 +1164,7 @@ class install_install extends module $sql_query = preg_replace('#phpbb_#i', $data['table_prefix'], $sql_query); - $sql_query = remove_comments($sql_query); + $sql_query = phpbb_remove_comments($sql_query); $sql_query = split_sql_file($sql_query, $delimiter); @@ -1202,7 +1202,7 @@ class install_install extends module // Change language strings... $sql_query = preg_replace_callback('#\{L_([A-Z0-9\-_]*)\}#s', 'adjust_language_keys_callback', $sql_query); - $sql_query = remove_comments($sql_query); + $sql_query = phpbb_remove_comments($sql_query); $sql_query = split_sql_file($sql_query, ';'); foreach ($sql_query as $sql) |
