diff options
author | INOPIAE <inopiae@cacert.org> | 2013-05-21 22:30:41 +0200 |
---|---|---|
committer | INOPIAE <inopiae@cacert.org> | 2013-05-21 22:30:41 +0200 |
commit | 684e80685dca8d928a7e9a5b6001da4c7e1c6836 (patch) | |
tree | cbff92caf03e8c5ef028b99efadbcc730352fe0e | |
parent | b6057400206bd3c8c6c21bff9cd49d6dcd352e69 (diff) | |
download | cacert-devel-684e80685dca8d928a7e9a5b6001da4c7e1c6836.tar.gz cacert-devel-684e80685dca8d928a7e9a5b6001da4c7e1c6836.tar.xz cacert-devel-684e80685dca8d928a7e9a5b6001da4c7e1c6836.zip |
bug 1137: changed direection of test in wot.inc.php
-rw-r--r-- | includes/wot.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/wot.inc.php b/includes/wot.inc.php index aa5500a..94253c9 100644 --- a/includes/wot.inc.php +++ b/includes/wot.inc.php @@ -675,5 +675,5 @@ function check_date_format($date, $year=2000){ */ function check_date_differnce($date, $diff=1){ //returns false if the date is larger then today + time diffrence - return (strtotime($date)>=time()+$diff*86400); + return (strtotime($date)<=time()+$diff*86400); }
\ No newline at end of file |