Gazelle/sections/better/index.php
World Wide Web Owner d3b5585c3e Comment out title field check from audiobook edits
Re-use get_thread_info function

Enable VBR checkbox in audiobook edit form

Pre-fill bitrate fields in torrent edit form
2011-04-13 15:36:33 +00:00

39 lines
888 B
PHP

<?
//Include all the basic stuff...
enforce_login();
if(isset($_GET['method'])) {
switch($_GET['method']) {
case 'transcode':
include(SERVER_ROOT.'/sections/better/transcode.php');
break;
case 'single':
include(SERVER_ROOT.'/sections/better/single.php');
break;
case 'snatch':
include(SERVER_ROOT.'/sections/better/snatch.php');
break;
case 'artistless':
include(SERVER_ROOT.'/sections/better/artistless.php');
break;
case 'tags':
include(SERVER_ROOT.'/sections/better/tags.php');
break;
case 'folders':
include(SERVER_ROOT.'/sections/better/folders.php');
break;
case 'files':
include(SERVER_ROOT.'/sections/better/files.php');
break;
case 'upload':
include(SERVER_ROOT.'/sections/better/upload.php');
break;
default:
error(404);
break;
}
} else {
include(SERVER_ROOT.'/sections/better/better.php');
}
?>