diff --git a/classes/class_torrent_form.php b/classes/class_torrent_form.php index 73811a14..59c8cea7 100644 --- a/classes/class_torrent_form.php +++ b/classes/class_torrent_form.php @@ -644,6 +644,12 @@ function audiobook_form() { + + Image (optional) + + Disabled?>/> + + Description @@ -671,30 +677,35 @@ function simple_form($CategoryID) { $Torrent = $this->Torrent; ?> -NewTorrent) { - if ($this->Categories[$CategoryID] == 'E-Books') { ?> - - - - +NewTorrent) { + if ($this->Categories[$CategoryID] == 'E-Books') { ?> + + + + - - - - - - - - - - + + + + + + + + + + + + + +
Author - TitleTitleAuthor - TitleTitle
Tags - -
Description - -
Tags + +
Image (optional) + Disabled?>/> +
Description + +
$Artists), false, false); + $DisplayName = display_artists(array(1=>$Artists), false, false, true); } else { $DisplayName=''; } - $DisplayName.=''.$GroupName.''; - if($GroupYear>0) { $DisplayName.=" [".$GroupYear."]"; } - if($GroupVanityHouse) { $DisplayName .= ' [VH]'; } - $DisplayName .= ' ['.$ReleaseTypes[$ReleaseType].']'; + $LastRemasterYear = '-'; $LastRemasterTitle = ''; $LastRemasterRecordLabel = ''; diff --git a/sections/reportsv2/array.php b/sections/reportsv2/array.php index b5c44668..d43d82ed 100644 --- a/sections/reportsv2/array.php +++ b/sections/reportsv2/array.php @@ -498,7 +498,7 @@ 'upload' => '0', 'warn' => '0', 'delete' => '0', - 'pm' => 'The [url=http://'.NONSSL_SITE_URL.'/rules.php?p=upload#r2.3.10]Uploading Rules[/url] require all uploads to have proper file names. Your torrent has been marked as eligible for trumping, which is now visible to all interested users, who may trump your torrent at any time. [b]You can avoid a 1-week warning by fixing this torrent yourself![/b] It\'s easy, and only takes a few minutes: Fix the required file names and upload a new torrent to the site. Then, report (RP) the bad torrent for the reason "Bad File Names Trump", indicate in the report comments that you have fixed the file names, and provide a link (PL) to the new torrent' + 'pm' => 'Reason: The [url=http://'.NONSSL_SITE_URL.'/rules.php?p=upload#r2.3.10]Uploading Rules[/url] require all uploads to have proper file names. Your torrent has been marked as eligible for trumping, which is now visible to all interested users, who may trump your torrent at any time. You are encouraged to fix this torrent yourself. It\'s easy, and only takes a few minutes: Fix the required file names and upload a new torrent to the site. Then, report (RP) the bad torrent for the reason "Bad File Names Trump," indicate in the report comments that you have fixed the file names, and provide a link (PL) to the new torrent' ) ), 'cassette' => array( diff --git a/sections/upload/upload_handle.php b/sections/upload/upload_handle.php index 64c0aa3b..c7f2236e 100644 --- a/sections/upload/upload_handle.php +++ b/sections/upload/upload_handle.php @@ -205,6 +205,8 @@ $Validate->SetFields('release_desc', '0','string','The release description has a minimum length of 10 characters.',array('maxlength'=>1000000, 'minlength'=>10)); + $Validate->SetFields('image', + '0','link','The image URL you entered was invalid.',array('maxlength'=>255, 'minlength'=>12)); break; case 'Applications': @@ -219,7 +221,9 @@ $Validate->SetFields('release_desc', '0','string','The release description has a minimum length of 10 characters.',array('maxlength'=>1000000, 'minlength'=>10)); - + + $Validate->SetFields('image', + '0','link','The image URL you entered was invalid.',array('maxlength'=>255, 'minlength'=>12)); break; }