1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-05 19:41:55 +02:00

Cosmetics: remove trailing whitespace

This commit is contained in:
Paul 'flowerysong' Arthur 2010-03-14 20:14:52 +00:00
parent ef48bf3fbd
commit 1cb0983ed0
279 changed files with 9355 additions and 9355 deletions

View file

@ -22,22 +22,22 @@
require_once '../lib/init.php';
if (!Access::check('interface','100')) {
access_denied();
if (!Access::check('interface','100')) {
access_denied();
exit;
}
show_header();
show_header();
/* Switch on Action */
switch ($_REQUEST['action']) {
case 'find_duplicates':
$duplicates = Catalog::get_duplicate_songs($_REQUEST['search_type']);
require_once Config::get('prefix') . '/templates/show_duplicate.inc.php';
require_once Config::get('prefix') . '/templates/show_duplicates.inc.php';
$duplicates = Catalog::get_duplicate_songs($_REQUEST['search_type']);
require_once Config::get('prefix') . '/templates/show_duplicate.inc.php';
require_once Config::get('prefix') . '/templates/show_duplicates.inc.php';
break;
default:
require_once Config::get('prefix') . '/templates/show_duplicate.inc.php';
require_once Config::get('prefix') . '/templates/show_duplicate.inc.php';
break;
} // end switch on action