make use of common_database_tablename()

This commit is contained in:
Brenda Wallace 2009-08-28 20:42:13 +12:00
parent f4117119ff
commit b833b725a8
1 changed files with 1 additions and 4 deletions

View File

@ -103,10 +103,7 @@ class User extends Memcached_DataObject
}
$toupdate = implode(', ', $parts);
$table = $this->tableName();
if(common_config('db','quote_identifiers')) {
$table = '"' . $table . '"';
}
$table = common_database_tablename($this->tableName());
$qry = 'UPDATE ' . $table . ' SET ' . $toupdate .
' WHERE id = ' . $this->id;
$orig->decache();