1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-09 08:06:38 +02:00

Thread moving and emote disabling now working

This commit is contained in:
mcfly
2008-12-17 18:48:02 +00:00
parent 0c7fb98d2e
commit 90e46f8066
7 changed files with 124 additions and 90 deletions

View File

@@ -24,7 +24,8 @@ SC_END
SC_BEGIN POST
global $postInfo;
$e107 = e107::getInstance();
return $e107->tp->toHTML($postInfo['post_entry'], true, 'USER_BODY', 'class:'.$post_info['user_class']);
$emote = (isset($postInfo['post_options']['no_emote']) ? ',emotes_off' : '');
return $e107->tp->toHTML($postInfo['post_entry'], true, 'USER_BODY'.$emote, 'class:'.$post_info['user_class']);
SC_END
SC_BEGIN POSTDELETED