diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-06-04 07:40:06 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-06-04 07:40:06 +0000 |
commit | 7743d70c68444fc2e20a6a4aa2f9a980203b999e (patch) | |
tree | 32d7c68ba195e429bde67e00c73ae6679159e82d /lib/ui.lib.php | |
parent | 19276f57a9eeacae7829629baa35fcb28d77419f (diff) | |
download | ampache-7743d70c68444fc2e20a6a4aa2f9a980203b999e.tar.gz ampache-7743d70c68444fc2e20a6a4aa2f9a980203b999e.tar.bz2 ampache-7743d70c68444fc2e20a6a4aa2f9a980203b999e.zip |
fixed browse users, add user, edit user
Diffstat (limited to 'lib/ui.lib.php')
-rw-r--r-- | lib/ui.lib.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/ui.lib.php b/lib/ui.lib.php index 88cfc3c2..be447091 100644 --- a/lib/ui.lib.php +++ b/lib/ui.lib.php @@ -236,6 +236,17 @@ function truncate_with_ellipsis($text, $max=27) { } // truncate_with_ellipsis /** + * show_header + * This shows the header.inc.php, it may do something + * more in the future + */ +function show_header() { + + require_once Config::get('prefix') . '/templates/header.inc.php'; + +} // show_header + +/** * show_footer * shows the footer of the page */ |