]> git.mxchange.org Git - friendica.git/commitdiff
The EOL constant is removed
authorMichael <heluecht@pirati.ca>
Tue, 18 Oct 2022 12:29:50 +0000 (12:29 +0000)
committerMichael <heluecht@pirati.ca>
Tue, 18 Oct 2022 12:29:50 +0000 (12:29 +0000)
boot.php
mod/wall_attach.php
mod/wall_upload.php
src/Content/Conversation.php
src/Core/Installer.php
src/Database/DBStructure.php
src/Model/Contact.php
src/Model/User.php
src/Module/Install.php
src/Object/EMail/ItemCCEMail.php

index 36a0745d60cb4774d85752c53e2b68d25a12509f..1716956fa1ad962da221989cd4633b552c575b23 100644 (file)
--- a/boot.php
+++ b/boot.php
 
 use Friendica\Core\Session;
 
-/**
- * Constant with a HTML line break.
- *
- * Contains a HTML line break (br) element and a real carriage return with line
- * feed for the source.
- * This can be used in HTML and JavaScript where needed a line break.
- */
-define('EOL', "<br />\r\n");
-
 /**
  * @name Gravity
  *
index 8341d72527ec602fd22668e7312e81a1b883c941..8a3ed760665a70be19659025cf36af4a821b8707 100644 (file)
@@ -66,7 +66,7 @@ function wall_attach_post(App $a) {
                if ($r_json) {
                        System::jsonExit(['error' => DI::l10n()->t('Permission denied.')]);
                }
-               DI::sysmsg()->addNotice(DI::l10n()->t('Permission denied.') . EOL );
+               DI::sysmsg()->addNotice(DI::l10n()->t('Permission denied.'));
                System::exit();
        }
 
@@ -90,7 +90,7 @@ function wall_attach_post(App $a) {
         */
 
        if ($filesize <= 0) {
-               $msg = DI::l10n()->t('Sorry, maybe your upload is bigger than the PHP configuration allows') . EOL .(DI::l10n()->t('Or - did you try to upload an empty file?'));
+               $msg = DI::l10n()->t('Sorry, maybe your upload is bigger than the PHP configuration allows') . '<br />' . (DI::l10n()->t('Or - did you try to upload an empty file?'));
                @unlink($src);
                if ($r_json) {
                        System::jsonExit(['error' => $msg]);
@@ -106,7 +106,7 @@ function wall_attach_post(App $a) {
                if ($r_json) {
                        System::jsonExit(['error' => $msg]);
                } else {
-                       echo $msg . EOL;
+                       echo $msg . '<br />';
                }
                System::exit();
        }
@@ -120,7 +120,7 @@ function wall_attach_post(App $a) {
                if ($r_json) {
                        System::jsonExit(['error' => $msg]);
                } else {
-                       echo $msg . EOL;
+                       echo $msg . '<br />';
                }
                System::exit();
        }
index befb0fceb5e80987c9e8409c4f5b1fa1762fddd2..efea196fdc3a3681e11d9b033846cca82047a290 100644 (file)
@@ -165,7 +165,7 @@ function wall_upload_post(App $a, $desktopmode = true)
                if ($r_json) {
                        System::jsonExit(['error' => $msg]);
                } else {
-                       echo  $msg. EOL;
+                       echo  $msg . '<br />';
                }
                System::exit();
        }
@@ -203,7 +203,7 @@ function wall_upload_post(App $a, $desktopmode = true)
                        if ($r_json) {
                                System::jsonExit(['error' => $msg]);
                        } else {
-                               echo  $msg. EOL;
+                               echo  $msg . '<br />';
                        }
                        System::exit();
                }
@@ -227,7 +227,7 @@ function wall_upload_post(App $a, $desktopmode = true)
                if ($r_json) {
                        System::jsonExit(['error' => $msg]);
                } else {
-                       echo  $msg. EOL;
+                       echo  $msg . '<br />';
                }
                System::exit();
        }
index 84f75cff326e607767821af7c83423c2299e9402..a381828497c361a10e410178f0c2a01b721da89a 100644 (file)
@@ -261,7 +261,7 @@ class Conversation
                                        break;
                        }
 
-                       $expanded .= "\t" . '<p class="wall-item-' . $verb . '-expanded" id="' . $verb . 'list-' . $id . '" style="display: none;" >' . $explikers . EOL . '</p>';
+                       $expanded .= "\t" . '<p class="wall-item-' . $verb . '-expanded" id="' . $verb . 'list-' . $id . '" style="display: none;" >' . $explikers . '</p>';
                }
 
                $o .= Renderer::replaceMacros(Renderer::getMarkupTemplate('voting_fakelink.tpl'), [
index 9a9bdfb5f79f0cc5f72e7ecf547ba012bec45729..1d29a5cf996899ba84fc53963eaca970f9210e97 100644 (file)
@@ -197,7 +197,7 @@ class Installer
                $result = DBStructure::install();
 
                if ($result) {
-                       $txt = DI::l10n()->t('You may need to import the file "database.sql" manually using phpmyadmin or mysql.') . EOL;
+                       $txt = DI::l10n()->t('You may need to import the file "database.sql" manually using phpmyadmin or mysql.') . '<br />';
                        $txt .= DI::l10n()->t('Please see the file "doc/INSTALL.md".');
 
                        $this->addCheck($txt, false, true, htmlentities($result, ENT_COMPAT, 'UTF-8'));
@@ -259,9 +259,9 @@ class Installer
 
                $help = "";
                if (!$passed) {
-                       $help .= DI::l10n()->t('Could not find a command line version of PHP in the web server PATH.') . EOL;
-                       $help .= DI::l10n()->t("If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See <a href='https://github.com/friendica/friendica/blob/stable/doc/Install.md#set-up-the-worker'>'Setup the worker'</a>") . EOL;
-                       $help .= EOL . EOL;
+                       $help .= DI::l10n()->t('Could not find a command line version of PHP in the web server PATH.') . '<br />';
+                       $help .= DI::l10n()->t("If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See <a href='https://github.com/friendica/friendica/blob/stable/doc/Install.md#set-up-the-worker'>'Setup the worker'</a>") . '<br />';
+                       $help .= '<br /><br />';
                        $tpl = Renderer::getMarkupTemplate('field_input.tpl');
                        /// @todo Separate backend Installer class and presentation layer/view
                        $help .= Renderer::replaceMacros($tpl, [
@@ -279,7 +279,7 @@ class Installer
                        [$result] = explode("\n", $result);
                        $help = "";
                        if (!$passed2) {
-                               $help .= DI::l10n()->t("PHP executable is not the php cli binary \x28could be cgi-fgci version\x29") . EOL;
+                               $help .= DI::l10n()->t("PHP executable is not the php cli binary \x28could be cgi-fgci version\x29") . '<br />';
                                $help .= DI::l10n()->t('Found PHP version: ') . "<tt>$result</tt>";
                        }
                        $this->addCheck(DI::l10n()->t('PHP cli binary'), $passed2, true, $help);
@@ -295,7 +295,7 @@ class Installer
                        $passed3 = $result == $str;
                        $help = "";
                        if (!$passed3) {
-                               $help .= DI::l10n()->t('The command line version of PHP on your system does not have "register_argc_argv" enabled.') . EOL;
+                               $help .= DI::l10n()->t('The command line version of PHP on your system does not have "register_argc_argv" enabled.') . '<br />';
                                $help .= DI::l10n()->t('This is required for message delivery to work.');
                        } else {
                                $this->phppath = $phppath;
@@ -333,7 +333,7 @@ class Installer
 
                // Get private key
                if (!$res) {
-                       $help .= DI::l10n()->t('Error: the "openssl_pkey_new" function on this system is not able to generate encryption keys') . EOL;
+                       $help .= DI::l10n()->t('Error: the "openssl_pkey_new" function on this system is not able to generate encryption keys') . '<br />';
                        $help .= DI::l10n()->t('If running under Windows, please see "http://www.php.net/manual/en/openssl.installation.php".');
                        $status = false;
                }
@@ -511,10 +511,10 @@ class Installer
                        (!file_exists('config/local.config.php') && !is_writable('.'))) {
 
                        $status = false;
-                       $help = DI::l10n()->t('The web installer needs to be able to create a file called "local.config.php" in the "config" folder of your web server and it is unable to do so.') . EOL;
-                       $help .= DI::l10n()->t('This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can.') . EOL;
-                       $help .= DI::l10n()->t('At the end of this procedure, we will give you a text to save in a file named local.config.php in your Friendica "config" folder.') . EOL;
-                       $help .= DI::l10n()->t('You can alternatively skip this procedure and perform a manual installation. Please see the file "doc/INSTALL.md" for instructions.') . EOL;
+                       $help = DI::l10n()->t('The web installer needs to be able to create a file called "local.config.php" in the "config" folder of your web server and it is unable to do so.') . '<br />';
+                       $help .= DI::l10n()->t('This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can.') . '<br />';
+                       $help .= DI::l10n()->t('At the end of this procedure, we will give you a text to save in a file named local.config.php in your Friendica "config" folder.') . '<br />';
+                       $help .= DI::l10n()->t('You can alternatively skip this procedure and perform a manual installation. Please see the file "doc/INSTALL.md" for instructions.') . '<br />';
                }
 
                $this->addCheck(DI::l10n()->t('config/local.config.php is writable'), $status, false, $help);
@@ -537,10 +537,10 @@ class Installer
                if (!is_writable('view/smarty3')) {
 
                        $status = false;
-                       $help = DI::l10n()->t('Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering.') . EOL;
-                       $help .= DI::l10n()->t('In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder.') . EOL;
-                       $help .= DI::l10n()->t("Please ensure that the user that your web server runs as \x28e.g. www-data\x29 has write access to this folder.") . EOL;
-                       $help .= DI::l10n()->t("Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files \x28.tpl\x29 that it contains.") . EOL;
+                       $help = DI::l10n()->t('Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering.') . '<br />';
+                       $help .= DI::l10n()->t('In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder.') . '<br />';
+                       $help .= DI::l10n()->t("Please ensure that the user that your web server runs as \x28e.g. www-data\x29 has write access to this folder.") . '<br />';
+                       $help .= DI::l10n()->t("Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files \x28.tpl\x29 that it contains.") . '<br />';
                }
 
                $this->addCheck(DI::l10n()->t('view/smarty3 is writable'), $status, true, $help);
@@ -571,7 +571,7 @@ class Installer
 
                        if ($fetchResult->getReturnCode() != 204) {
                                $status = false;
-                               $help = DI::l10n()->t('Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-dist to .htaccess.') . EOL;
+                               $help = DI::l10n()->t('Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-dist to .htaccess.') . '<br />';
                                $help .= DI::l10n()->t('In some circumstances (like running inside containers), you can skip this error.');
                                $error_msg = [];
                                $error_msg['head'] = DI::l10n()->t('Error message from Curl when fetching');
index d14e791e2c5ed5f7cde01ce64104e6c2e58ff00c..74bd5b42379fb335ca8f7a9ef7b82b0ab9319810 100644 (file)
@@ -150,7 +150,7 @@ class DBStructure
                echo DI::l10n()->t("\nError %d occurred during database update:\n%s\n",
                        DBA::errorNo(), DBA::errorMessage());
 
-               return DI::l10n()->t('Errors encountered performing database changes: ') . $message . EOL;
+               return DI::l10n()->t('Errors encountered performing database changes: ') . $message . '<br />';
        }
 
        /**
index 434c2b1f637e6375e7f962890b1a05b4fa0da4fd..ca23c09f6ed58c21a6827792133f38cc24bc4481 100644 (file)
@@ -2853,30 +2853,30 @@ class Contact
 
                // do we have enough information?
                if (empty($protocol) || ($protocol == Protocol::PHANTOM) || (empty($ret['url']) && empty($ret['addr']))) {
-                       $result['message'] .= DI::l10n()->t('The profile address specified does not provide adequate information.') . EOL;
+                       $result['message'] .= DI::l10n()->t('The profile address specified does not provide adequate information.') . '<br />';
                        if (empty($ret['poll'])) {
-                               $result['message'] .= DI::l10n()->t('No compatible communication protocols or feeds were discovered.') . EOL;
+                               $result['message'] .= DI::l10n()->t('No compatible communication protocols or feeds were discovered.') . '<br />';
                        }
                        if (empty($ret['name'])) {
-                               $result['message'] .= DI::l10n()->t('An author or name was not found.') . EOL;
+                               $result['message'] .= DI::l10n()->t('An author or name was not found.') . '<br />';
                        }
                        if (empty($ret['url'])) {
-                               $result['message'] .= DI::l10n()->t('No browser URL could be matched to this address.') . EOL;
+                               $result['message'] .= DI::l10n()->t('No browser URL could be matched to this address.') . '<br />';
                        }
                        if (strpos($ret['url'], '@') !== false) {
-                               $result['message'] .= DI::l10n()->t('Unable to match @-style Identity Address with a known protocol or email contact.') . EOL;
-                               $result['message'] .= DI::l10n()->t('Use mailto: in front of address to force email check.') . EOL;
+                               $result['message'] .= DI::l10n()->t('Unable to match @-style Identity Address with a known protocol or email contact.') . '<br />';
+                               $result['message'] .= DI::l10n()->t('Use mailto: in front of address to force email check.') . '<br />';
                        }
                        return $result;
                }
 
                if ($protocol === Protocol::OSTATUS && DI::config()->get('system', 'ostatus_disabled')) {
-                       $result['message'] .= DI::l10n()->t('The profile address specified belongs to a network which has been disabled on this site.') . EOL;
+                       $result['message'] .= DI::l10n()->t('The profile address specified belongs to a network which has been disabled on this site.') . '<br />';
                        $ret['notify'] = '';
                }
 
                if (!$ret['notify']) {
-                       $result['message'] .= DI::l10n()->t('Limited profile. This person will be unable to receive direct/personal notifications from you.') . EOL;
+                       $result['message'] .= DI::l10n()->t('Limited profile. This person will be unable to receive direct/personal notifications from you.') . '<br />';
                }
 
                $writeable = ((($protocol === Protocol::OSTATUS) && ($ret['notify'])) ? 1 : 0);
@@ -2935,7 +2935,7 @@ class Contact
 
                $contact = DBA::selectFirst('contact', [], ['url' => $ret['url'], 'network' => $ret['network'], 'uid' => $uid]);
                if (!DBA::isResult($contact)) {
-                       $result['message'] .= DI::l10n()->t('Unable to retrieve contact information.') . EOL;
+                       $result['message'] .= DI::l10n()->t('Unable to retrieve contact information.') . '<br />';
                        return $result;
                }
 
index 5bd84466f8b9cc12cd6f6da20272f1c92d29fae2..005e3bbf35ccc6213dc7d098ab8deaea1a90b15b 100644 (file)
@@ -994,7 +994,7 @@ class User
                                try {
                                        $authurl = $openid->authUrl();
                                } catch (Exception $e) {
-                                       throw new Exception(DI::l10n()->t('We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID.') . EOL . EOL . DI::l10n()->t('The error message was:') . $e->getMessage(), 0, $e);
+                                       throw new Exception(DI::l10n()->t('We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID.') . '<br />' . DI::l10n()->t('The error message was:') . $e->getMessage(), 0, $e);
                                }
                                System::externalRedirect($authurl);
                                // NOTREACHED
index 843cee9f189115ad83339aba07589e54152ad1d9..1631cfe7f4b8ef83f459c09b4857b13998f189a8 100644 (file)
@@ -337,7 +337,7 @@ class Install extends BaseModule
 
                                if (count($this->installer->getChecks()) == 0) {
                                        $txt            = '<p style="font-size: 130%;">';
-                                       $txt            .= $this->t('Your Friendica site database has been installed.') . EOL;
+                                       $txt            .= $this->t('Your Friendica site database has been installed.') . '<br />';
                                        $db_return_text .= $txt;
                                }
 
index 927a068d7d9dc902ac352a992ac0046a79184816..fd4baa0b99736f45de4fca54d32e1b301199449a 100644 (file)
@@ -41,8 +41,8 @@ class ItemCCEMail extends Email
 
                $disclaimer = '<hr />' . $l10n->t('This message was sent to you by %s, a member of the Friendica social network.', $user['username'])
                              . '<br />';
-               $disclaimer .= $l10n->t('You may visit them online at %s', $baseUrl . '/profile/' . $a->getLoggedInUserNickname()) . EOL;
-               $disclaimer .= $l10n->t('Please contact the sender by replying to this post if you do not wish to receive these messages.') . EOL;
+               $disclaimer .= $l10n->t('You may visit them online at %s', $baseUrl . '/profile/' . $a->getLoggedInUserNickname()) . '<br />';
+               $disclaimer .= $l10n->t('Please contact the sender by replying to this post if you do not wish to receive these messages.') . '<br />';
                if (!$item['title'] == '') {
                        $subject = $item['title'];
                } else {