aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_privmsgs.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2007-09-18 14:49:19 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2007-09-18 14:49:19 +0000
commit951f793daeb358eace97cdd0b1c321766da55d48 (patch)
tree37ed80ac95e82e70ea9560ae3256d53fb423801a /phpBB/includes/functions_privmsgs.php
parent36e99af959799eab6610fc6f3ca0e2c76ba4020f (diff)
downloadforums-951f793daeb358eace97cdd0b1c321766da55d48.tar
forums-951f793daeb358eace97cdd0b1c321766da55d48.tar.gz
forums-951f793daeb358eace97cdd0b1c321766da55d48.tar.bz2
forums-951f793daeb358eace97cdd0b1c321766da55d48.tar.xz
forums-951f793daeb358eace97cdd0b1c321766da55d48.zip
some fixes. :P
- language authors may review their email template files... git-svn-id: file:///svn/phpbb/trunk@8092 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_privmsgs.php')
-rw-r--r--phpBB/includes/functions_privmsgs.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/functions_privmsgs.php b/phpBB/includes/functions_privmsgs.php
index cae06b743d..e19d191d2c 100644
--- a/phpBB/includes/functions_privmsgs.php
+++ b/phpBB/includes/functions_privmsgs.php
@@ -1831,9 +1831,9 @@ function message_history($msg_id, $user_id, $message_row, $folder, $in_post_mode
'QUOTE_IMG' => $user->img('icon_post_quote', $user->lang['REPLY_WITH_QUOTE']),
'HISTORY_TITLE' => $title,
- 'U_VIEW_NEXT_HISTORY' => "$url&amp;p=" . (($next_history_pm) ? $next_history_pm : $msg_id),
- 'U_VIEW_PREVIOUS_HISTORY' => "$url&amp;p=" . (($previous_history_pm) ? $previous_history_pm : $msg_id))
- );
+ 'U_VIEW_NEXT_HISTORY' => ($next_history_pm) ? "$url&amp;p=" . $next_history_pm : '',
+ 'U_VIEW_PREVIOUS_HISTORY' => ($previous_history_pm) ? "$url&amp;p=" . $previous_history_pm : '',
+ ));
return true;
}