]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
make use of common_database_tablename()
authorBrenda Wallace <shiny@cpan.org>
Fri, 28 Aug 2009 08:42:13 +0000 (20:42 +1200)
committerBrenda Wallace <shiny@cpan.org>
Fri, 28 Aug 2009 08:42:13 +0000 (20:42 +1200)
classes/User.php

index 58f9a6874e2534385a12e79086f1321ca72fe86f..618e2d6aac11585e9cc092d94fef47f60b11b7d1 100644 (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();