]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - scripts/setpassword.php
Fix /scripts/setpassword.php
[quix0rs-gnu-social.git] / scripts / setpassword.php
index b70689f030a7a67f8ec06315a3de41a9a88eb9e5..6908ef556a7faeb53ec1ae33ea26c7f8747a65cc 100755 (executable)
@@ -1,8 +1,8 @@
 #!/usr/bin/env php
 <?php
 /*
- * Laconica - a distributed open-source microblogging tool
- * Copyright (C) 2008, 2009, Control Yourself, Inc.
+ * StatusNet - the distributed open-source microblogging tool
+ * Copyright (C) 2008, 2009, StatusNet, Inc.
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as published by
@@ -41,7 +41,7 @@ if (mb_strlen($password) < 6) {
     exit(1);
 }
 
-$user = User::staticGet('nickname', $nickname);
+$user = User::getKV('nickname', $nickname);
 
 if (!$user) {
     print "No such user '$nickname'.\n";
@@ -50,7 +50,7 @@ if (!$user) {
 
 $original = clone($user);
 
-$user->password = common_munge_password($password, $user->id);
+$user->password = common_munge_password($password, $user->getProfile());
 
 if (!$user->update($original)) {
     print "Error updating user '$nickname'.\n";