1
0

Always add the editcaptured and editcreation CSS files

This commit is contained in:
Mike Miller 2013-01-03 17:29:36 +02:00
parent e15e2a106c
commit c022a0af59
2 changed files with 2 additions and 14 deletions

View File

@ -20,12 +20,6 @@
class editcaptured_theme_Core {
static function head($theme) {
if (!$theme->item()) {
return;
}
$item = $theme->item();
if ( $item && access::can("edit", $item) ) {
$theme->css("editcaptured.css");
}
$theme->css("editcaptured.css");
}
}

View File

@ -20,12 +20,6 @@
class editcreation_theme_Core {
static function head($theme) {
if (!$theme->item()) {
return;
}
$item = $theme->item();
if ( $item && access::can("edit", $item) ) {
return $theme->css("editcreation.css");
}
return $theme->css("editcreation.css");
}
}