diff options
| author | Bharat Mediratta <bharat@menalto.com> | 2008-12-22 03:53:36 +0000 |
|---|---|---|
| committer | Bharat Mediratta <bharat@menalto.com> | 2008-12-22 03:53:36 +0000 |
| commit | b526cc8c0bea4033a1ffadd6706f073f9cb90eeb (patch) | |
| tree | 1bc51063fad8c56910cb52bafb13294d31b82a7b /themes/default | |
| parent | fe27bd1eb34efe95da6ffe8b6f6c137fe8a18306 (diff) | |
Add some admin theme callbacks and make them explicitly admin_xxx for consistency
with the callbacks in the xxx_block helpers. So in the theme we have:
admin.html.php:
$theme->admin_page_bottom()
then in the helpers:
core_block.php:
function admin_page_bottom() { }
Diffstat (limited to 'themes/default')
| -rw-r--r-- | themes/default/views/footer.html.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/themes/default/views/footer.html.php b/themes/default/views/footer.html.php index 7f011735..b5f842b7 100644 --- a/themes/default/views/footer.html.php +++ b/themes/default/views/footer.html.php @@ -1,4 +1,5 @@ <? defined("SYSPATH") or die("No direct script access."); ?> +<?= $theme->footer() ?>; <ul id="gCredits"> <li class="first"> Powered by <a href="http://gallery.menalto.com">Gallery3</a> </li> <?= $theme->credits() ?> |
