diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-29 23:02:54 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-29 23:02:54 +0000 |
commit | 603d2a9ba4e7e3a0adb7eaecaae874039e71fefa (patch) | |
tree | ce33ef778bec772736bf778bfc1df8c8f7690b50 /activate.php | |
parent | 338520b8c91291d431b525e033f3b29c79095300 (diff) | |
download | ampache-603d2a9ba4e7e3a0adb7eaecaae874039e71fefa.tar.gz ampache-603d2a9ba4e7e3a0adb7eaecaae874039e71fefa.tar.bz2 ampache-603d2a9ba4e7e3a0adb7eaecaae874039e71fefa.zip |
fixed style.inc references
Diffstat (limited to 'activate.php')
-rw-r--r-- | activate.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/activate.php b/activate.php index 5942994b..d635982e 100644 --- a/activate.php +++ b/activate.php @@ -23,13 +23,16 @@ $no_session = true; require_once('lib/init.php'); +$web_path = conf('web_path'); + /* Keep them out if they shouldn't be here */ if(!conf('allow_public_registration') || conf('demo_mode')) { access_denied(); } ?> <html><head> -<?php show_template('style'); ?> +<link rel="stylesheet" href="<?php echo $web_path; ?>/templates/default.css" type="text/css" /> +<link rel="stylesheet" href="<?php echo $web_path; ?><?php echo conf('theme_path'); ?>/templates/default.css" type="text/css" /> <head><body> <?php |