]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - scripts/clear_jabber.php
Merge branch 'master' of gitorious.org:social/mainline into social-master
[quix0rs-gnu-social.git] / scripts / clear_jabber.php
index 5ec53caf0e8fc38f0f0d8aa0311ea99fc624a0f5..50edebd78ddc86352f4461bd217feb8c8ee964ff 100755 (executable)
@@ -34,18 +34,18 @@ Deletes a user's confirmed Jabber/XMPP address from the database.
 
 END_OF_DELETEUSER_HELP;
 
-require_once INSTALLDIR.'/scripts/commandline.inc';
+require_once INSTALLDIR.'/scripts/commandline.inc.php';
 
 if (have_option('i', 'id')) {
     $id = get_option_value('i', 'id');
-    $user = User::staticGet('id', $id);
+    $user = User::getKV('id', $id);
     if (empty($user)) {
         print "Can't find user 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 user with nickname '$nickname'\n";
         exit(1);
@@ -67,7 +67,7 @@ if (have_option('i', 'id')) {
 
 function clear_jabber($id)
 {
-    $user = User::staticGet('id', $id);
+    $user = User::getKV('id', $id);
     if ($user && $user->jabber) {
         echo "clearing user $id's user.jabber, was: $user->jabber";
         if (have_option('dry-run')) {