diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2013-01-26 01:22:50 -0500 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2013-01-26 01:22:50 -0500 |
commit | 04aa79b53c38095d4727f4d850e191c64d99352f (patch) | |
tree | c6ac7dce0306a6f2fa8fd846b6f001c5fb35a943 /templates | |
parent | eaa44dcd0938ad48f4a9f863b24ca5d3a318ae10 (diff) | |
download | ampache-04aa79b53c38095d4727f4d850e191c64d99352f.tar.gz ampache-04aa79b53c38095d4727f4d850e191c64d99352f.tar.bz2 ampache-04aa79b53c38095d4727f4d850e191c64d99352f.zip |
Move show_{footer,header}() from ui.lib.php to UI
Diffstat (limited to 'templates')
-rw-r--r-- | templates/show_login_form.inc.php | 2 | ||||
-rw-r--r-- | templates/show_user_registration.inc.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/show_login_form.inc.php b/templates/show_login_form.inc.php index ac6ed2b0..3ec408f6 100644 --- a/templates/show_login_form.inc.php +++ b/templates/show_login_form.inc.php @@ -95,5 +95,5 @@ if (@is_readable(Config::get('prefix') . '/config/motd.php')) { ?> <?php } -show_footer(); +UI::show_footer(); ?> diff --git a/templates/show_user_registration.inc.php b/templates/show_user_registration.inc.php index 7bc21083..be9e269e 100644 --- a/templates/show_user_registration.inc.php +++ b/templates/show_user_registration.inc.php @@ -110,5 +110,5 @@ if (Config::get('user_agreement')) { ?> </div> </form> <?php -show_footer(); +UI::show_footer(); ?> |