mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 19:06:27 +00:00
Empty commit
This commit is contained in:
parent
8b4df3109e
commit
db5f412a18
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
@ -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,
|
||||
|
@ -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':
|
||||
|
Loading…
Reference in New Issue
Block a user