Commit:    f7098a060b10fac7ceaf88f5a24a3a6bbe4767c9
Author:    Hannes Magnusson <[email protected]>         Mon, 31 Mar 2014 
23:00:12 -0700
Parents:   91a4316cbc1001147ccc1b0e367362cf5557fb49
Branches:  master

Link:       
http://git.php.net/?p=web/php.git;a=commitdiff;h=f7098a060b10fac7ceaf88f5a24a3a6bbe4767c9

Log:
Missing now check

Changed paths:
  M  images/logo.php


Diff:
diff --git a/images/logo.php b/images/logo.php
index cbd1e22..91d6bb9 100644
--- a/images/logo.php
+++ b/images/logo.php
@@ -53,7 +53,7 @@ if ($day < 6 || 365-$day < 32) {
 if ($now % 60 == 10 || $refresh) {
     $logos[] = "./ele-running.gif";
 }
-if ($now % 240 == 10 || $refresh) {
+if ($now % 240 == 10 || $refresh || $now) {
     $logos = array_merge($logos, glob("logos/oldschool/*"));
 }


--
PHP Webmaster List Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to