summaryrefslogtreecommitdiff
path: root/modules/server_add/helpers/server_add_theme.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules/server_add/helpers/server_add_theme.php')
-rw-r--r--modules/server_add/helpers/server_add_theme.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/server_add/helpers/server_add_theme.php b/modules/server_add/helpers/server_add_theme.php
index 2ba2e167..0410c9fe 100644
--- a/modules/server_add/helpers/server_add_theme.php
+++ b/modules/server_add/helpers/server_add_theme.php
@@ -20,6 +20,7 @@
class server_add_theme_Core {
static function head($theme) {
if (user::active()->admin) {
+ $theme->css("server_add.css");
$theme->script("server_add.js");
}
}
@@ -27,6 +28,7 @@ class server_add_theme_Core {
static function admin_head($theme) {
$head = array();
if (strpos(Router::$current_uri, "admin/server_add") !== false) {
+ $theme->css("server_add.css");
$theme->css("jquery.autocomplete.css");
$base = url::site("__ARGS__");
$csrf = access::csrf_token();