Quote:
Originally Posted by Club3G
|
I guess I didn't post it here then because I couldn't locate it myself too. Anyway, please try this:
(AFTER YOU APPLIED WHO IS ONLINE HACK STEP IN INSTALLATION INSTRUCTIONS!)
edit includes/functions_online.php, find:
PHP Code:
// Logician Hack : Webtemplates
if (stristr(PHP_OS, 'win')) {require_once('..\wt_options.php');require_once('..\wt_functions.php');}
else {require_once('../wt_options.php');require_once('../wt_functions.php');}
// Logician Hack : Webtemplates
replace it as:
PHP Code:
// Logician Hack : Webtemplates
global $WT_Option_NameOFviewphp,$DB_site;
if (stristr(PHP_OS, 'win')) {require_once('..\wt_options.php');require_once('..\wt_functions.php');}
else {require_once('./wt_options.php');require_once('./wt_functions.php');}
// Logician Hack : Webtemplates
find:
PHP Code:
// Logician Hack : WebTemplates
if (preg_match("/(pg=)(.*)(&)/siU", $userinfo['location'], $l_match1) OR preg_match("/(pg=)(.*)$/siU", $userinfo['location'], $l_match2))
{
if ($l_match1[2]) {$lmatch=$l_match1[2];} else {$lmatch=$l_match2[2];}
if (substr($lmatch,0,5)=='priv_' AND $bbuserinfo['usergroupid'] != 6)
{
$userinfo['where'] = "<a href=\"$vboptions[forumhome].php?$session[sessionurl]\">$vboptions[bbtitle]</a>";
}
else
{
$userinfo['action'] = "Reading <b>WebTemplate:</b>";
$userinfo['where']= ' <a href="'.$WT_Option_NameOFviewphp.'?'.$session[sessionurl].'pg='.$lmatch.'" target="_blank">'.$lmatch.'</a>';
}
}
// Logician Hack : WebTemplates
replace it as:
PHP Code:
// Logician Hack : WebTemplates
if (preg_match("/(pg=)(.*)(&)/siU", $userinfo['location'], $l_match1) OR preg_match("/(pg=)(.*)$/siU", $userinfo['location'], $l_match2))
{
if ($l_match1[2]) {$lmatch=$l_match1[2];} else {$lmatch=$l_match2[2];}
if (substr($lmatch,0,5)=='priv_' AND $bbuserinfo['usergroupid'] != 6)
{
$userinfo['where'] = "<a href=\"$vboptions[forumhome].php?$session[sessionurl]\">$vboptions[bbtitle]</a>";
}
else
{
$userinfo['action'] = "Reading <b>WebTemplate:</b>";
$wtinfo = $DB_site->query_first("
SELECT userfriendlyname FROM wt2_templates
WHERE title='".addslashes($lmatch)."'
");
if ($wtinfo['userfriendlyname']) {$wtname = $wtinfo['userfriendlyname'];} else {$wtname = $lmatch;}
$userinfo['where']= ' <a href="'.$WT_Option_NameOFviewphp.'?'.$session[sessionurl].'pg='.$lmatch.'" target="_blank">'.$wtname.'</a>';
}
}
// Logician Hack : WebTemplates