* @copyright 2001 - 2011 Ampache.org * @license http://opensource.org/licenses/gpl-2.0 GPLv2 * @version PHP 5.2 * @link http://www.ampache.org/ * @since File available since Release 1.0 */ require_once 'lib/init.php'; show_header(); $action = isset($_REQUEST['action']) ? scrub_in($_REQUEST['action']) : null; session_start(); $_SESSION['catalog'] = 0; /** * Check for the refresh mojo, if it's there then require the * refresh_javascript include. Must be greater then 5, I'm not * going to let them break their servers */ if (Config::get('refresh_limit') > 5) { $refresh_limit = Config::get('refresh_limit'); $ajax_url = Config::get('ajax_url') . '?page=index&action=reloadnp'; require_once Config::get('prefix') . '/templates/javascript_refresh.inc.php'; } require_once Config::get('prefix') . '/templates/show_index.inc.php'; show_footer(); ?>