]> git.mxchange.org Git - friendica.git/blobdiff - index.php
Vier: Avoid an error when calling the admin settings of "vier" when "vier" is not...
[friendica.git] / index.php
index 949ccd532be9701ff77add799fcef881c8744fcc..02316e1e952b4362a627356f6d71525884168e2a 100644 (file)
--- a/index.php
+++ b/index.php
@@ -53,12 +53,12 @@ if(!$install) {
        load_config('config');
        load_config('system');
 
-       $maxsysload = intval(get_config('system','maxloadavg'));
-       if($maxsysload < 1)
-               $maxsysload = 50;
+       $maxsysload_frontend = intval(get_config('system','maxloadavg_frontend'));
+       if($maxsysload_frontend < 1)
+               $maxsysload_frontend = 50;
        if(function_exists('sys_getloadavg')) {
                $load = sys_getloadavg();
-               if(intval($load[0]) > $maxsysload) {
+               if(intval($load[0]) > $maxsysload_frontend) {
                        logger('system: load ' . $load[0] . ' too high. Service Temporarily Unavailable.');
                        header($_SERVER["SERVER_PROTOCOL"].' 503 Service Temporarily Unavailable');
                        header('Retry-After: 300');
@@ -129,7 +129,6 @@ if((x($_GET,'zrl')) && (!$install && !$maintenance)) {
  *
  * What we really need to do is output the raw headers ourselves so we can keep them separate.
  *
-
  */
 
 // header('Link: <' . $a->get_baseurl() . '/amcd>; rel="acct-mgmt";');