summary refs log tree commit diff stats
path: root/theme/css.php
diff options
context:
space:
mode:
authorStarla Insigna <hatkirby@fourisland.com>2008-11-24 17:57:24 -0500
committerStarla Insigna <hatkirby@fourisland.com>2008-11-24 17:57:24 -0500
commitbed8ca70bfa9c85fd6c3b9cffb258a11b60ac37d (patch)
tree53585224712a6ee7c99b7850124ea03011ead88f /theme/css.php
parent214246e5c2e02ff60506af3d2478a06e38bfd0c2 (diff)
downloadfourisland-bed8ca70bfa9c85fd6c3b9cffb258a11b60ac37d.tar.gz
fourisland-bed8ca70bfa9c85fd6c3b9cffb258a11b60ac37d.tar.bz2
fourisland-bed8ca70bfa9c85fd6c3b9cffb258a11b60ac37d.zip
Returned holiday backgrounds
Diffstat (limited to 'theme/css.php')
-rwxr-xr-xtheme/css.php16
1 files changed, 11 insertions, 5 deletions
diff --git a/theme/css.php b/theme/css.php index d8825ae..9eb3906 100755 --- a/theme/css.php +++ b/theme/css.php
@@ -24,17 +24,23 @@ header('Content-type: text/css');
24 24
25include('../../security/config.php'); 25include('../../security/config.php');
26include('../includes/db.php'); 26include('../includes/db.php');
27include('../includes/specialdates.php');
27 28
28include("css/website.css"); 29include("css/website.css");
29include("css/bubbles.css"); 30include("css/bubbles.css");
30include("css/thickbox.css"); 31include("css/thickbox.css");
31 32
32if ($_GET['id'] == 'day') 33if (sd_ifNoSpecialDay())
33{ 34{
34 include("css/day.css"); 35 if ($_GET['id'] == 'day')
35} else if ($_GET['id'] == 'night') 36 {
36{ 37 include("css/day.css");
37 include("css/night.css"); 38 } else if ($_GET['id'] == 'night')
39 {
40 include("css/night.css");
41 }
42} else {
43 include("css/holiday.php");
38} 44}
39 45
40if ($_GET['cat'] == 'home') 46if ($_GET['cat'] == 'home')