]> git.mxchange.org Git - friendica.git/blobdiff - mod/wallmessage.php
Merge pull request #9444 from annando/update
[friendica.git] / mod / wallmessage.php
index 085201fc44e213bcf56db63e0d89322746400563..cbf53b45d62c39548040409fe465cf3a0a4278f8 100644 (file)
@@ -1,7 +1,24 @@
 <?php
 /**
- * @file mod/wallmessage.php
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * 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 the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
  */
+
 use Friendica\App;
 use Friendica\Core\Logger;
 use Friendica\Core\Renderer;
@@ -15,7 +32,7 @@ function wallmessage_post(App $a) {
 
        $replyto = Profile::getMyURL();
        if (!$replyto) {
-               notice(DI::l10n()->t('Permission denied.') . EOL);
+               notice(DI::l10n()->t('Permission denied.'));
                return;
        }
 
@@ -39,7 +56,7 @@ function wallmessage_post(App $a) {
        $user = $r[0];
 
        if (! intval($user['unkmail'])) {
-               notice(DI::l10n()->t('Permission denied.') . EOL);
+               notice(DI::l10n()->t('Permission denied.'));
                return;
        }
 
@@ -56,19 +73,17 @@ function wallmessage_post(App $a) {
 
        switch ($ret) {
                case -1:
-                       notice(DI::l10n()->t('No recipient selected.') . EOL);
+                       notice(DI::l10n()->t('No recipient selected.'));
                        break;
                case -2:
-                       notice(DI::l10n()->t('Unable to check your home location.') . EOL);
+                       notice(DI::l10n()->t('Unable to check your home location.'));
                        break;
                case -3:
-                       notice(DI::l10n()->t('Message could not be sent.') . EOL);
+                       notice(DI::l10n()->t('Message could not be sent.'));
                        break;
                case -4:
-                       notice(DI::l10n()->t('Message collection failure.') . EOL);
+                       notice(DI::l10n()->t('Message collection failure.'));
                        break;
-               default:
-                       info(DI::l10n()->t('Message sent.') . EOL);
        }
 
        DI::baseUrl()->redirect('profile/'.$user['nickname']);
@@ -78,14 +93,14 @@ function wallmessage_post(App $a) {
 function wallmessage_content(App $a) {
 
        if (!Profile::getMyURL()) {
-               notice(DI::l10n()->t('Permission denied.') . EOL);
+               notice(DI::l10n()->t('Permission denied.'));
                return;
        }
 
        $recipient = (($a->argc > 1) ? $a->argv[1] : '');
 
        if (!$recipient) {
-               notice(DI::l10n()->t('No recipient.') . EOL);
+               notice(DI::l10n()->t('No recipient.'));
                return;
        }
 
@@ -94,7 +109,7 @@ function wallmessage_content(App $a) {
        );
 
        if (! DBA::isResult($r)) {
-               notice(DI::l10n()->t('No recipient.') . EOL);
+               notice(DI::l10n()->t('No recipient.'));
                Logger::log('wallmessage: no recipient');
                return;
        }
@@ -102,7 +117,7 @@ function wallmessage_content(App $a) {
        $user = $r[0];
 
        if (!intval($user['unkmail'])) {
-               notice(DI::l10n()->t('Permission denied.') . EOL);
+               notice(DI::l10n()->t('Permission denied.'));
                return;
        }