- if ($this->NewTorrent) {
- if ($this->Categories[$CategoryID] == 'E-Books') { ?>
-
Author - Title
- } else { ?>
-
Title
- }
-?>
+ if ($this->NewTorrent) {
+ if ($this->Categories[$CategoryID] == 'E-Books') { ?>
+
Author - Title
+ } else { ?>
+
Title
+ } ?>
-
-
-
Tags
-
-
-
-
-
-
Description
-
-
-
-
- } ?>
+
+
+
Tags
+
+
+
+
+
+
Image (optional)
+
+ Disabled?>/>
+
+
+
+
Description
+
+
+
+
+ } ?>
}//function simple_form
diff --git a/sections/ajax/browse.php b/sections/ajax/browse.php
index d0e2af33..f9cf8e55 100644
--- a/sections/ajax/browse.php
+++ b/sections/ajax/browse.php
@@ -360,16 +360,13 @@ function header_link($SortKey,$DefaultWay="desc") {
if (!empty($ExtendedArtists[1]) || !empty($ExtendedArtists[4]) || !empty($ExtendedArtists[5]) || !empty($ExtendedArtists[6])) {
unset($ExtendedArtists[2]);
unset($ExtendedArtists[3]);
- $DisplayName = display_artists($ExtendedArtists, false, false);
+ $DisplayName = display_artists($ExtendedArtists, false, false, true);
} elseif(!empty($Artists)) {
- $DisplayName = display_artists(array(1=>$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;
}