
12-13-2010, 07:37 AM
|
 |
|
|
Join Date: Dec 2008
Posts: 599
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by PGP
In original Tapatalk not support HIDE mode from Psionic, to fix that i'll did the following:
in file: /functions/get_thread.php
Code:
define('THIS_SCRIPT', 'showthread');
replace with
Code:
define('THIS_SCRIPT', 'showthread_tt');
before
add this
Code:
$post['pagetext'] = $GLOBALS['hhr']->parse_bbcode($post['pagetext'], $thread['forumid'], $post['threadid'], $post['postid'], $post['userid']);
in file /functions/get_topic.php
before
Code:
$mobiquo_isclosed = iif($thread['open'], false, true);
add this
Code:
$addinfo['pagetext'] = $GLOBALS['hhr']->strip_bbcode($addinfo['pagetext'], 'email');
in file /include/functions_search.php
before
Code:
$post['pagetext'] = htmlspecialchars_uni(fetch_censored_text(trim(fetch_trimmed_title(strip_bbcode($post['pagetext'], 1), 200))));
add this
Code:
$post['pagetext'] = $GLOBALS['hhr']->strip_bbcode($post['pagetext'], 'email');
|
Hi PGP,
What is this for? Very much interested to see what we can incorporated into base code of the Tapatalk plugin.
|