diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-07-12 05:30:30 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-07-12 05:30:30 +0000 |
commit | 7be9eb4ea1e868fa0725334697057e1b7b994460 (patch) | |
tree | 5d4c634f2d64f2202cad95b4ce74c87838655e3d /admin/index.php | |
parent | 12f679cf51ed9440c44cdc0cb178687f0ad17c3b (diff) | |
download | ampache-7be9eb4ea1e868fa0725334697057e1b7b994460.tar.gz ampache-7be9eb4ea1e868fa0725334697057e1b7b994460.tar.bz2 ampache-7be9eb4ea1e868fa0725334697057e1b7b994460.zip |
re-added ability to delete catalogs, fixed exception error with id3 library
Diffstat (limited to 'admin/index.php')
-rw-r--r-- | admin/index.php | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/admin/index.php b/admin/index.php index 99631f29..3fd759af 100644 --- a/admin/index.php +++ b/admin/index.php @@ -1,7 +1,7 @@ <?php /* - Copyright (c) 2001 - 2006 Ampache.org + Copyright (c) 2001 - 2007 Ampache.org All rights reserved. This program is free software; you can redistribute it and/or @@ -22,19 +22,13 @@ require '../lib/init.php'; -$action = scrub_in($_REQUEST['action']); - if (!$GLOBALS['user']->has_access(100)) { access_denied(); exit(); } -require_once Config::get('prefix') . '/templates/header.inc.php'; -?> -<div id="admin-tools"> - <?php require Config::get('prefix') . '/templates/show_admin_tools.inc.php'; ?> -</div> -<div id="admin-info"> - <?php require Config::get('prefix') . '/templates/show_admin_info.inc.php'; ?> -</div> -<?php show_footer(); ?> +show_header(); + + + +show_footer(); |