]> git.mxchange.org Git - friendica.git/commitdiff
Changed comments
authorMichael <heluecht@pirati.ca>
Fri, 30 Mar 2018 19:57:14 +0000 (19:57 +0000)
committerMichael <heluecht@pirati.ca>
Fri, 30 Mar 2018 19:57:14 +0000 (19:57 +0000)
src/Core/Console.php
src/Core/Console/NewPassword.php

index 02a0b66ae2402fa776795cdf3c0915d374cc7329..a1143ae1d975a0ef004725d0c409d6d0dfcdd95f 100644 (file)
@@ -43,7 +43,7 @@ Commands:
        globalcommunitysilence Silence remote profile from global community page
        help                   Show help about a command, e.g (bin/console help config)
        maintenance            Set maintenance mode for this node
-       newpassword            Set an new password for a given user
+       newpassword            Set a new password for a given user
        php2po                 Generate a messages.po file from a strings.php file
        po2php                 Generate a strings.php file from a messages.po file
        typo                   Checks for parse errors in Friendica files
index 9d40e454bba792873b10ddc79d56e7cedee10720..d44286d28f7cc21f82b3207a1ee4c47ca737a082 100644 (file)
@@ -10,15 +10,13 @@ use Friendica\Database\DBM;
 use dba;
 
 /**
- * @brief tool to block an account from the node
+ * @brief tool to set a new password for a user
  *
- * With this tool, you can block an account in such a way, that no postings
- * or comments this account writes are accepted to the node.
+ * With this tool, you can set a new password for a user
  *
  * License: AGPLv3 or later, same as Friendica
  *
- * @author Tobias Diekershoff <mrpetovan@gmail.com>
- * @author Hypolite Petovan <mrpetovan@gmail.com>
+ * @author Michael Vogel <heluecht@pirati.ca>
  */
 class NewPassword extends \Asika\SimpleConsole\Console
 {
@@ -84,7 +82,7 @@ HELP;
                        throw new \RuntimeException(L10n::t('Password update failed. Please try again.'));
                }
 
-               $this->out(L10n::t('Password changed.', $nick));
+               $this->out(L10n::t('Password changed.'));
 
                return 0;
        }