diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2008-11-09 21:30:27 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2008-11-09 21:30:27 +0000 |
commit | ba21539c62bd14f105f3a2ce167b572d9c2c8b86 (patch) | |
tree | 8b089a1a031be5b5d08d07f5567bbdc88196697e | |
parent | 4e3391a3467145e867269cdfcc9d292939f79705 (diff) | |
download | pfsense-ba21539c62bd14f105f3a2ce167b572d9c2c8b86.zip pfsense-ba21539c62bd14f105f3a2ce167b572d9c2c8b86.tar.gz |
Inculde wizard.css if it exists
-rwxr-xr-x | usr/local/www/wizard.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/wizard.php b/usr/local/www/wizard.php index 0a92446..346a4c0 100755 --- a/usr/local/www/wizard.php +++ b/usr/local/www/wizard.php @@ -160,7 +160,7 @@ include("head.inc"); <body link="#0000CC" vlink="#0000CC" alink="#0000CC" onLoad="enablechange();"> <?php - if(file_exists("/usr/local/www/{$g['theme']}/wizard.css")) + if(file_exists("/usr/local/www/themes/{$g['theme']}/wizard.css")) echo "<link rel=\"stylesheet\" href=\"/themes/{$g['theme']}/wizard.css\" media=\"all\" />\n"; else echo "<link rel=\"stylesheet\" href=\"/themes/{$g['theme']}/all.css\" media=\"all\" />"; |