Empty commit

This commit is contained in:
Git 2013-10-31 08:00:49 +00:00
parent 8b4df3109e
commit db5f412a18
9 changed files with 14 additions and 6 deletions

View File

@ -321,7 +321,7 @@ public static function release_order(&$SiteOptions, $Default = false) {
$Val = $RT[$Key];
}
$ID = "$Key_" . (int)(!!$Checked);
$ID = $Key. '_' . (int)(!!$Checked);
// The HTML is indented this far for proper indentation in the generated HTML
// on user.php?action=edit

View File

@ -1,5 +1,8 @@
CHANGE LOG
2013-10-31 by alderaan
Renamed take*.php files in sections/requests/ (added underscores)
2013-10-28 by alderaan
Collage API now returns subscriberCount and torrentGroupIDList

View File

@ -325,6 +325,11 @@ CREATE TABLE `drives` (
KEY `Name` (`Name`)
) ENGINE=InnoDB CHARSET utf8;
CREATE TABLE `drone_warnings` (
`UserID` int(10) NOT NULL,
PRIMARY KEY (`UserID`)
) ENGINE=InnoDB CHARSET utf8;
CREATE TABLE `dupe_groups` (
`ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
`Comments` text,

View File

@ -20,24 +20,24 @@
include(SERVER_ROOT.'/sections/requests/new_edit.php');
break;
case 'takevote':
include(SERVER_ROOT.'/sections/requests/takevote.php');
include(SERVER_ROOT.'/sections/requests/take_vote.php');
break;
case 'takefill':
include(SERVER_ROOT.'/sections/requests/takefill.php');
include(SERVER_ROOT.'/sections/requests/take_fill.php');
break;
case 'takenew':
case 'takeedit':
include(SERVER_ROOT.'/sections/requests/takenew_edit.php');
include(SERVER_ROOT.'/sections/requests/take_new_edit.php');
break;
case 'delete':
case 'unfill':
include(SERVER_ROOT.'/sections/requests/interim.php');
break;
case 'takeunfill':
include(SERVER_ROOT.'/sections/requests/takeunfill.php');
include(SERVER_ROOT.'/sections/requests/take_unfill.php');
break;
case 'takedelete':
include(SERVER_ROOT.'/sections/requests/takedelete.php');
include(SERVER_ROOT.'/sections/requests/take_delete.php');
break;
case 'view':
case 'viewrequest':