diff options
-rw-r--r-- | mostcommentedimagestoday.php | 2 | ||||
-rw-r--r-- | mostviewedimagestoday.php | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/mostcommentedimagestoday.php b/mostcommentedimagestoday.php index ce0ad8aeb..066feb45e 100644 --- a/mostcommentedimagestoday.php +++ b/mostcommentedimagestoday.php @@ -16,7 +16,7 @@ //find timestamps for today $time_info = new stdClass(); - $time_info->start = mktime(0,0,0, date("m"), 1, date("Y")); + $time_info->start = mktime(0,0,0, date("m"), date("d"), date("Y")); $time_info->end = mktime(); //this works but is wildly inefficient diff --git a/mostviewedimagestoday.php b/mostviewedimagestoday.php index 9f7c10113..04f051317 100644 --- a/mostviewedimagestoday.php +++ b/mostviewedimagestoday.php @@ -14,9 +14,9 @@ $max = 24; - //find timestamps for today + //find timestamps for today $time_info = new stdClass(); - $time_info->start = mktime(0,0,0, date("m"), 1, date("Y")); + $time_info->start = mktime(0,0,0, date("m"), date("d"), date("Y")); $time_info->end = mktime(); //this works but is wildly inefficient |