1
0

Merge pull request #134 from mikeage/master

Show CSS for editcreation/editcaptured for all albums
This commit is contained in:
Bharat Mediratta 2013-01-08 12:28:39 -08:00
commit 48a1269547
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");
}
}