Hello,
Just installed v1.5.9 and am trying to skin it. Something between Gantry and Kunena isn't behaving just right, so investigated some files. I'm looking at an odd tail on line 125 in templates/default_ex/thread.php.
Code:
<td align = "center" width = "5"<?php echo $leaf->id==$id?" class=\"".$boardclass."sectiontableentry2\">":">";
if ($leaf->ordering==0)
{
And changed to this:
Code:
<td align = "center" width = "5"<?php echo $leaf->id==$id?" class=\"".$boardclass."sectiontableentry2\"":"";?>>
<?php
if ($leaf->ordering==0)
{
I'll ponder some more ...lol, it's late

my editors bells are going off on the closing /td is all...just curious as usual.
Thanks!
*edit:
I guess my editor (php designer) likes this best perhaps:
Code:
<td align = "center" width = "5"<?php echo $leaf->id==$id?" class=\"".$boardclass."sectiontableentry2\"" : "";
if ($leaf->ordering==0)
{
if($leaf->locked==0)
{
// echo " ";
}
else
{
// echo isset($fbIcons['topiclocked']) ? '<img src="' . KUNENA_URLICONSPATH.$fbIcons['topiclocked'].'" border="0" alt="'._GEN_LOCKED_TOPIC.'" title="'._GEN_LOCKED_TOPIC.'" />' : '<img src="'.KUNENA_URLEMOTIONSPATH.'lock.gif" width="15" height="15" alt="'._GEN_LOCKED_TOPIC.'" />';
$topicLocked=1;
}
}
else
{
// echo isset($fbIcons['topicsticky']) ? '<img src="' . KUNENA_URLICONSPATH.$fbIcons['topicsticky'].'" border="0" alt="'._GEN_ISSTICKY.'" title="'._GEN_ISSTICKY.'" />' : '<img src="'.KUNENA_URLEMOTIONSPATH.'pushpin.gif" width="15" height="15" alt="'._GEN_ISSTICKY.'" />';
$topicSticky=1;
}
?>></td>
I'll run with it for a while and see what goes on.