mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-09 02:06:32 +02:00
$db-> to phpbb::$db->
git-svn-id: file:///svn/phpbb/trunk@9336 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -150,9 +150,9 @@ class formatted_text
|
||||
{
|
||||
$this->changed = false;
|
||||
|
||||
$sql = 'UPDATE ' . $table . ' SET ' . $db->sql_build_query('UPDATE', $this->to_db_data($column))
|
||||
. ' WHERE ' . $where;
|
||||
return (bool) $db->sql_query($sql);
|
||||
$sql = 'UPDATE ' . $table . ' SET ' . phpbb::$db->sql_build_query('UPDATE', $this->to_db_data($column))
|
||||
. ' WHERE ' . $where;
|
||||
return (bool) phpbb::$db->sql_query($sql);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user