Fix #19, hydra's theme no longer forces dateformat

This commit is contained in:
Alex (Xkeeper) 2016-04-22 12:24:27 -07:00
parent cf7023111f
commit 39726935cc

View File

@ -74,8 +74,11 @@
$css = ""; $css = "";
} elseif (isset($schemetype) && $schemetype == 1) { } elseif (isset($schemetype) && $schemetype == 1) {
$css = "<link rel='stylesheet' href='/css/base.css' type='text/css'><link rel='stylesheet' type='text/css' href='/css/$schemefile.css'>"; $css = "<link rel='stylesheet' href='/css/base.css' type='text/css'><link rel='stylesheet' type='text/css' href='/css/$schemefile.css'>";
$dateformat = "m/d/y h:i"; // possibly causes issue #19 - not sure why this was here
$dateshort = "m/d/y"; // likely irrelevant after addition of custom date formats
// (remove this later)
//$dateformat = "m/d/y h:i";
//$dateshort = "m/d/y";
// backwards compat // backwards compat
global $bgcolor, $linkcolor; global $bgcolor, $linkcolor;