[feature/migrations] Update phpbb_db_migration class for PHP 5.3.3

PHPBB3-9737
This commit is contained in:
David King 2012-11-12 16:41:02 -05:00 committed by Nathan Guse
parent 6c44dadecb
commit ced035788b

View file

@ -24,7 +24,7 @@ if (!defined('IN_PHPBB'))
* *
* @package db * @package db
*/ */
class phpbb_db_migration abstract class phpbb_db_migration
{ {
protected $config; protected $config;
protected $db; protected $db;
@ -88,7 +88,7 @@ class phpbb_db_migration
*/ */
protected function sql_query($sql) protected function sql_query($sql)
{ {
if (defined('DEBUG_EXTRA')) if (defined('DEBUG'))
{ {
echo "<br />\n{$sql}\n<br />"; echo "<br />\n{$sql}\n<br />";
} }