Quote:
Today at 11:30 AM Intex said this in Post #51
Ahh I see. The board I use has a very small amount of members (unlikely to rise above 50), so I wouldn't be too concerned about the number of queries on that pages to be honest, particularly when max. usage there are 11 people online.
If this is possible and simple, could you show me. If its a big job don't worry - I'm grateful for the time you've spent so far .
|
Edit online.php, find:
PHP Code:
// Logician WebTemplates v.2 Hack
global $WT_Option_NameOFviewphp;
// Logician WebTemplates v.2 Hack
Replace it as:
PHP Code:
// Logician WebTemplates v.2 Hack
global $WT_Option_NameOFviewphp,$DB_site,$WT_DB_TemplateTable;
// Logician WebTemplates v.2 Hack
find:
PHP Code:
$userinfo[where]= 'Reading <b>WebTemplate:</b> <a href="'.$WT_Option_NameOFviewphp.'?pg='.$lmatch.'&s='.$session['sessionhash'].'" target="_blank">'.$lmatch.'</a>';
Replace as:
PHP Code:
$friendlyname = $DB_site->query_first("SELECT userfriendlyname FROM $WT_DB_TemplateTable WHERE title='".addslashes($lmatch)."'");
if (!$friendlyname[userfriendlyname]) {$friendlyname[userfriendlyname]=$lmatch;}
$userinfo[where]= 'Reading <b>WebTemplate:</b> <a href="'.$WT_Option_NameOFviewphp.'?pg='.$lmatch.'&s='.$session['sessionhash'].'" target="_blank">'.$friendlyname[userfriendlyname].'</a>';
Enjoy