X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=scripts%2Fdeleteuser.php;h=52389123c5f76f56f6b2526ad0db6271f30af843;hb=40e875f9cc5ec0c17605adcef73205a49f422abd;hp=39331f1a8af1e19d10c4d06a32e4f7837691abb5;hpb=104a47e4a2903f1c7ea73363a73cee12f0cf14ac;p=quix0rs-gnu-social.git diff --git a/scripts/deleteuser.php b/scripts/deleteuser.php old mode 100644 new mode 100755 index 39331f1a8a..52389123c5 --- a/scripts/deleteuser.php +++ b/scripts/deleteuser.php @@ -39,14 +39,14 @@ if (have_option('i', 'id')) { $id = get_option_value('i', 'id'); $user = User::staticGet('id', $id); if (empty($user)) { - print "Cannot find user with ID $id\n"; + 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); if (empty($user)) { - print "Cannot find user with nickname '$nickname'\n"; + print "Can't find user with nickname '$nickname'\n"; exit(1); } } else {