diff --git a/html/user/project.inc.sample b/html/user/project.inc.sample index a4c1da8c28..137b73336a 100644 --- a/html/user/project.inc.sample +++ b/html/user/project.inc.sample @@ -12,6 +12,7 @@ define("URL_BASE", ""); define('IMAGE_PATH', 'images/user_profile/'); define('PROFILE_PATH', 'user_profile/'); define('LANGUAGE_FILE', 'languages.txt'); +define('STYLESHEET', 'white.css'); function project_intro() { echo" diff --git a/html/user/util.inc b/html/user/util.inc index 788a998499..57d5958bc1 100644 --- a/html/user/util.inc +++ b/html/user/util.inc @@ -121,7 +121,7 @@ function page_head($title, $user=null, $fd=null, $styleSheet=null) { } if ($styleSheet == NULL) { - $styleSheet = URL_BASE . 'black.css'; + $styleSheet = URL_BASE . STYLESHEET; } write_fd($fd, "$title\n");