diff options
author | Michael Tänzer <neo@nhng.de> | 2011-11-02 01:31:41 +0100 |
---|---|---|
committer | Michael Tänzer <neo@nhng.de> | 2011-11-02 01:31:41 +0100 |
commit | 27eb6fe8c3b4adb3a101afbdc3ff7dc63b24c98e (patch) | |
tree | c6edfe8595eb0d109c213a27b90a55cba1a2fa20 /includes/notary.inc.php | |
parent | eab65d7d64b1696114a9dc10524df7ffc24032e0 (diff) | |
download | cacert-devel-27eb6fe8c3b4adb3a101afbdc3ff7dc63b24c98e.tar.gz cacert-devel-27eb6fe8c3b4adb3a101afbdc3ff7dc63b24c98e.tar.xz cacert-devel-27eb6fe8c3b4adb3a101afbdc3ff7dc63b24c98e.zip |
bug 882: port the date restriction to the support sectionbug-882
Signed-off-by: Michael Tänzer <neo@nhng.de>
Diffstat (limited to 'includes/notary.inc.php')
-rw-r--r-- | includes/notary.inc.php | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/includes/notary.inc.php b/includes/notary.inc.php index 73227ac..cc0e0eb 100644 --- a/includes/notary.inc.php +++ b/includes/notary.inc.php @@ -285,9 +285,12 @@ { if ($awarded == "0") { - $tdstyle="style='background-color: #ffff80'"; - $emopen="<em>"; - $emclose="</em>"; + if ($when < "2006-09-01") + { + $tdstyle="style='background-color: #ffff80'"; + $emopen="<em>"; + $emclose="</em>"; + } } } ?> |