diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2010-08-11 08:02:16 -0700 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2010-08-11 08:02:16 -0700 |
commit | c90996341aa309a0c585392427561831890767c7 (patch) | |
tree | 57719ec19b257abc503acff7bd968f20d4de51ee | |
parent | a94bb197987deeee4b0046fb6566510080e087f6 (diff) |
Fix for ticket #1288. Add a containing <ul> element for the footer on the admin page. Also respect the "show credits" variable setting.
-rw-r--r-- | themes/admin_wind/views/admin.html.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/themes/admin_wind/views/admin.html.php b/themes/admin_wind/views/admin.html.php index f9ef18c7..6b0c3fe5 100644 --- a/themes/admin_wind/views/admin.html.php +++ b/themes/admin_wind/views/admin.html.php @@ -77,9 +77,11 @@ </div> <div id="g-footer" class="g-inline ui-helper-clearfix"> <?= $theme->admin_footer() ?> - <div> + <? if (module::get_var("gallery", "show_credits")): ?> + <ul id="g-credits" class="g-inline"> <?= $theme->admin_credits() ?> - </div> + </ul> + <? endif ?> </div> </div> <?= $theme->admin_page_bottom() ?> |