diff --git a/sections/comments/torrentcomments.php b/sections/comments/torrentcomments.php
index 4e171648..07e1bb71 100644
--- a/sections/comments/torrentcomments.php
+++ b/sections/comments/torrentcomments.php
@@ -12,19 +12,23 @@
$MyTorrents = false;
}
-$OtherLink = '';
+$OtherLink = 'Request comments Artist comments
';
if($MyTorrents) {
$Conditions = "WHERE t.UserID = $UserID AND tc.AuthorID != t.UserID AND tc.AddedTime > t.Time";
$Title = 'Comments left on your torrents';
$Header = 'Comments left on your uploads';
- if($Self) $OtherLink = 'Display comments you have made';
+ if($Self) {
+ $OtherLink .= 'Display comments you have made';
+ }
}
else {
$Conditions = "WHERE tc.AuthorID = $UserID";
$Title = 'Comments made by '.($Self?'you':$Username);
$Header = 'Torrent comments left by '.($Self?'you':Users::format_username($UserID, false, false, false)).'';
- if($Self) $OtherLink = 'Display comments left on your uploads';
+ if($Self) {
+ $OtherLink .= 'Display comments left on your uploads';
+ }
}
$Comments = $DB->query("SELECT
diff --git a/sections/forums/warn.php b/sections/forums/warn.php
index cbadc803..51d319bc 100644
--- a/sections/forums/warn.php
+++ b/sections/forums/warn.php
@@ -27,7 +27,7 @@