diff options
| author | Oleg Pudeyev <oleg@bsdpower.com> | 2012-07-07 16:43:24 -0400 |
|---|---|---|
| committer | Oleg Pudeyev <oleg@bsdpower.com> | 2012-07-07 16:43:24 -0400 |
| commit | 36a568fd567d2cf18d6815d6e12785f08b222c57 (patch) | |
| tree | b4ff7f6a345dfef772e912b339edc7566fac43a2 /phpBB/install/install_install.php | |
| parent | e5364088c310722e292566500973a28a300f258f (diff) | |
| parent | 2c12f31cdf5f4c459d4f282acb92829e11accfd2 (diff) | |
| download | forums-36a568fd567d2cf18d6815d6e12785f08b222c57.tar forums-36a568fd567d2cf18d6815d6e12785f08b222c57.tar.gz forums-36a568fd567d2cf18d6815d6e12785f08b222c57.tar.bz2 forums-36a568fd567d2cf18d6815d6e12785f08b222c57.tar.xz forums-36a568fd567d2cf18d6815d6e12785f08b222c57.zip | |
Merge PR #856 branch 'bantu/ticket/10937' into prep-release-3.0.11
* bantu/ticket/10937:
[ticket/10937] Update documentation to say which comment styles are removed.
[ticket/10937] Comment removal functions: Restore backward compatibility
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) |
