]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - scripts/fixup_utf8.php
The overloaded DB_DataObject function staticGet is now called getKV
[quix0rs-gnu-social.git] / scripts / fixup_utf8.php
index 796021b72136655ee4b9a60d64070efde58eb8e8..dc4bb822f1e593a4e624e8e06389ff9fc240fa08 100755 (executable)
@@ -159,7 +159,7 @@ class UTF8FixerUpper
                 continue;
             }
 
-            $notice = Notice::staticGet('id', $id);
+            $notice = Notice::getKV('id', $id);
             $notice->decache();
             $notice->free();
 
@@ -223,7 +223,7 @@ class UTF8FixerUpper
                 continue;
             }
 
-            $profile = Profile::staticGet('id', $id);
+            $profile = Profile::getKV('id', $id);
             $profile->decache();
             $profile->free();
 
@@ -287,7 +287,7 @@ class UTF8FixerUpper
                 continue;
             }
 
-            $user_group = User_group::staticGet('id', $id);
+            $user_group = User_group::getKV('id', $id);
             $user_group->decache();
             $user_group->free();
 
@@ -344,7 +344,7 @@ class UTF8FixerUpper
                 continue;
             }
 
-            $message = Message::staticGet('id', $id);
+            $message = Message::getKV('id', $id);
             $message->decache();
             $message->free();