Strange T-STRING errors...
searching for this:
<ul><li><a href="index.php"><?php echo $lang_common['Index'] ?></a></li><li> » <a href="viewforum.php?id=<?php echo $cur_topic['forum_id'] ?>"><?php echo pun_htmlspecialchars($cur_topic['forum_name']) ?></a></li><li> » <?php echo pun_htmlspecialchars($cur_topic['subject']) ?></li></ul>
I found that in viewtopic.php (manually updated to version 1.2.10 with each update released) what's there is expressed differently:
<ul><li><a href="index.php">'.$lang_common['Index'].'</a></li><li> » <a href="viewforum.php?id='.$cur_topic['forum_id'].'">'.pun_htmlspecialchars($cur_topic['forum_name']).'</a></li><li> » '.pun_htmlspecialchars($cur_topic['subject']).'</li></ul>
i see two instances of similar code used twice in this page, simply replacing the code present with the code for this mod results in T-STRING errors related to unexpected ';' and ',' markup.
I'm wondering why my viewtopic.php has such different code from this mod.