In overview, if something happens, an indicator goes red. For how long it blinks? May i change some option to blink for a day/week/month?
Ad Widget
Collapse
Trigger indicator blinks until what?
Collapse
X
-
In queue.php i found this:
Maybe changing $now-$row["nextcheck"]<=30 to another value would do the trick. I'm asking for a confirmation.Code:100 while($row=DBfetch($result)) 101 { 102 if($now-$row["nextcheck"]<=5) $sec_5[$row["type"]]++; 103 elseif($now-$row["nextcheck"]<=10) $sec_10[$row["type"]]++; 104 elseif($now-$row["nextcheck"]<=30) $sec_30[$row["type"]]++; 105 elseif($now-$row["nextcheck"]<=60) $sec_60[$row["type"]]++; 106 elseif($now-$row["nextcheck"]<=300) $sec_300[$row["type"]]++; 107 else $sec_rest[$row["type"]]++; 108 109 }
Thanks for all answers. -
I think its in the C source.
Search the forums. This has been discussed.Comment

Comment