Quote:
Originally Posted by []\[]emesis
One very minor template error. Check attachment and you will see.
|
Thank you for discovering this, I really missed that
To fix it, open
forumdisplay.php and find:
Code:
// ### THREAD CATEGORY HACK START ###
// get categories
$threadcategories = fetch_thread_categories($foruminfo, urldecode($_REQUEST['threadcategory']), 0, $vbphrase['all_categories']);
$show['threadcategories'] = 0;
if (!empty($threadcategories) AND $foruminfo['allowcategories'])
{
if (!empty($_REQUEST['threadcategory']))
{
$sorturl .= '&threadcategory=' . urlencode($_REQUEST['threadcategory']);
}
$show['threadcategories'] = 1;
$categorymarkup = array();
$categorymarkup = explode('{1}', $vboptions['categorymarkup']);
if ($vboptions['showcategoryalign'] > 0)
{
$show['threadcategories'] = 2;
switch($vboptions['showcategoryalign'])
{
case 1:
$categoryalign = 'left';
break;
case 2:
$categoryalign = 'right';
break;
case 3:
$categoryalign = 'center';
break;
default:
$categoryalign = 'left';
}
}
}
// ### THREAD CATEGORY HACK END ###
Move that bunch of code
above this code:
Code:
// get announcements
Now find (still in
forumdisplay.php):
Code:
$sorturl = "forumdisplay.php?$session[sessionurl]f=$forumid&daysprune=$daysprune";
And
replace it with:
Code:
$sorturl = "forumdisplay.php?$session[sessionurl]f=$forumid&daysprune=$daysprune" . $sorturl;
Now edit the template
forumdisplay_announcement and find:
Code:
<if condition="$show['threadicons']">5<else />4</if>">
Replace it with:
Code:
<if condition="$show['threadicons']"><if condition="$show['threadcategories'] == 2">6<else />5</if><else /><if condition="$show['threadcategories'] == 2">5<else />4</if></if>">
I will update the hack to v1.2.1 later.