diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-07-05 03:32:38 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-07-05 03:32:38 +0000 |
commit | d24fe88905baf183892ed9fd757e698e56309904 (patch) | |
tree | 0861389b8de13f06bce0fa4c13299b83fba00ae7 /search.php | |
parent | 9457b75fb16f05347c08b484db6fe2b848efba15 (diff) | |
download | ampache-d24fe88905baf183892ed9fd757e698e56309904.tar.gz ampache-d24fe88905baf183892ed9fd757e698e56309904.tar.bz2 ampache-d24fe88905baf183892ed9fd757e698e56309904.zip |
fixed update from tags for artist and album and fixed clear album art
Diffstat (limited to 'search.php')
-rw-r--r-- | search.php | 22 |
1 files changed, 7 insertions, 15 deletions
@@ -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 @@ -20,22 +20,14 @@ */ -/*! - @header Search page - Search stuff. Can do by artist, album and song title. +require_once 'lib/init.php'; - Also case-insensitive for now. +show_header(); -*/ - -require_once('lib/init.php'); - -show_template('header'); - -/* Import/Clean vars */ -$action = scrub_in($_REQUEST['action']); - -switch ($action) { +/** + * action switch + */ +switch ($_REQUEST['action']) { case 'quick_search': /* This needs to be done because we don't know what thing * they used the quick search to search on until after they've |