From: Mikael Nordfeldth Date: Sun, 28 Feb 2016 18:40:16 +0000 (+0100) Subject: No need to set $threads = 0 on the line before it's set ;) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b8643f73b77e811ba32e46153608d2cb2cdee5a8;p=quix0rs-gnu-social.git No need to set $threads = 0 on the line before it's set ;) --- diff --git a/scripts/queuedaemon.php b/scripts/queuedaemon.php index efc1e04e9e..8fb0f8e0ae 100755 --- a/scripts/queuedaemon.php +++ b/scripts/queuedaemon.php @@ -168,7 +168,6 @@ if (have_option('t')) { } else if (have_option('--threads')) { $threads = intval(get_option_value('--threads')); } else { - $threads = 0; //If there is no argument for number of threads //Try reading a config option for the number $threads = common_config('queue','threads');