aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_posting.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-04-14 12:33:33 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-04-14 12:33:33 +0200
commitaebf2cc5cd5b76b3cc42b819dc446afb7cdbbad3 (patch)
tree4bf2f4508035982faf946bb1136a76f689bc22c8 /phpBB/includes/functions_posting.php
parent3ce479f061ce46ad8f1ac3c99a02459ff2b4b2d2 (diff)
parentfbeed2d975b4c080d3f391226b9b69b61f55aa23 (diff)
downloadforums-aebf2cc5cd5b76b3cc42b819dc446afb7cdbbad3.tar
forums-aebf2cc5cd5b76b3cc42b819dc446afb7cdbbad3.tar.gz
forums-aebf2cc5cd5b76b3cc42b819dc446afb7cdbbad3.tar.bz2
forums-aebf2cc5cd5b76b3cc42b819dc446afb7cdbbad3.tar.xz
forums-aebf2cc5cd5b76b3cc42b819dc446afb7cdbbad3.zip
Merge remote-tracking branch 'marc/ticket/12372' into develop-ascraeus
* marc/ticket/12372: [ticket/12372] Use $() instead of jQuery() in core.js for toggleDisplay [ticket/12372] Use admin.js $(document).ready for hiding questionnaire details [ticket/12372] Rename JS function dE() to phpbb.toggleDisplay() [ticket/12372] Move dE() function core.js [ticket/12372] Unify definition of function dE() across all files [ticket/12372] Use jQuery in javascript dE() function
Diffstat (limited to 'phpBB/includes/functions_posting.php')
-rw-r--r--phpBB/includes/functions_posting.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php
index 79fcb892ef..51bbcb8bae 100644
--- a/phpBB/includes/functions_posting.php
+++ b/phpBB/includes/functions_posting.php
@@ -1153,7 +1153,7 @@ function topic_review($topic_id, $forum_id, $mode = 'topic_review', $cur_post_id
'S_HAS_ATTACHMENTS' => (!empty($attachments[$row['post_id']])) ? true : false,
'S_FRIEND' => ($row['friend']) ? true : false,
'S_IGNORE_POST' => ($row['foe']) ? true : false,
- 'L_IGNORE_POST' => ($row['foe']) ? sprintf($user->lang['POST_BY_FOE'], get_username_string('full', $poster_id, $row['username'], $row['user_colour'], $row['post_username']), "<a href=\"{$u_show_post}\" onclick=\"dE('{$post_anchor}', 1); return false;\">", '</a>') : '',
+ 'L_IGNORE_POST' => ($row['foe']) ? sprintf($user->lang['POST_BY_FOE'], get_username_string('full', $poster_id, $row['username'], $row['user_colour'], $row['post_username']), "<a href=\"{$u_show_post}\" onclick=\"phpbb.toggleDisplay('{$post_anchor}', 1); return false;\">", '</a>') : '',
'POST_SUBJECT' => $post_subject,
'MINI_POST_IMG' => $user->img('icon_post_target', $user->lang['POST']),