]> git.mxchange.org Git - friendica.git/commitdiff
SIGTERM moved
authorMichael <heluecht@pirati.ca>
Tue, 18 Oct 2022 04:35:06 +0000 (04:35 +0000)
committerMichael <heluecht@pirati.ca>
Tue, 18 Oct 2022 04:35:06 +0000 (04:35 +0000)
boot.php
src/App.php

index 32a1494c6a8b829ae818e99a0a802b034b70ecd9..d43ef8b0d464c603d0b38469f906edeabb426e98 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -36,7 +36,7 @@ use Friendica\Core\Session;
  * feed for the source.
  * This can be used in HTML and JavaScript where needed a line break.
  */
-define('EOL',                    "<br />\r\n");
+define('EOL', "<br />\r\n");
 
 /**
  * @name Gravity
@@ -50,11 +50,6 @@ define('GRAVITY_COMMENT',      6);
 define('GRAVITY_UNKNOWN',      9);
 /* @}*/
 
-// Normally this constant is defined - but not if "pcntl" isn't installed
-if (!defined('SIGTERM')) {
-       define('SIGTERM', 15);
-}
-
 /**
  * Returns the user id of locally logged in user or false.
  *
index d46f69843b9a4241a1215ea9d34a22c472fb525e..55b3e72e0eb6ca974e8f06c28ede845c91cf2c90 100644 (file)
@@ -351,6 +351,11 @@ class App
        {
                set_time_limit(0);
 
+               // Normally this constant is defined - but not if "pcntl" isn't installed
+               if (!defined('SIGTERM')) {
+                       define('SIGTERM', 15);
+               }
+
                // Ensure that all "strtotime" operations do run timezone independent
                date_default_timezone_set('UTC');