]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - scripts/makegroupadmin.php
Fix for strip_geo's decaching; also added --all option to run over all notices by...
[quix0rs-gnu-social.git] / scripts / makegroupadmin.php
index 07f980d58bf03198620dacff085e21f2db9c8c94..a68798451cdd22b4b836a6a061f108b36c1aaf82 100644 (file)
@@ -67,7 +67,7 @@ try {
         $member->created    = common_sql_now();
 
         if (!$member->insert()) {
-            throw new Exception("Cannot add '$nickname' to '$groupname'.");
+            throw new Exception("Can't add '$nickname' to '$groupname'.");
         }
     }
 
@@ -80,7 +80,7 @@ try {
     $member->is_admin = 1;
 
     if (!$member->update($orig)) {
-        throw new Exception("Cannot make '$nickname' admin of '$groupname'.");
+        throw new Exception("Can't make '$nickname' admin of '$groupname'.");
     }
 
 } catch (Exception $e) {