]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - scripts/strip_geo.php
Don't trust local HTML either
[quix0rs-gnu-social.git] / scripts / strip_geo.php
index b3f27be616a7b4b620d143c17784ace8cfc962e4..021b66885190dacbf944759738895272855256cc 100755 (executable)
@@ -40,14 +40,14 @@ require_once INSTALLDIR.'/scripts/commandline.inc';
 
 if (have_option('i', 'id')) {
     $id = get_option_value('i', 'id');
-    $profile = Profile::staticGet('id', $id);
+    $profile = Profile::getKV('id', $id);
     if (empty($profile)) {
         print "Can't find local or remote profile with ID $id\n";
         exit(1);
     }
 } else if (have_option('n', 'nickname')) {
     $nickname = get_option_value('n', 'nickname');
-    $user = User::staticGet('nickname', $nickname);
+    $user = User::getKV('nickname', $nickname);
     if (empty($user)) {
         print "Can't find local user with nickname '$nickname'\n";
         exit(1);