The answer
How to Fix the Orca Groups Post Topic Error
When you go to the groups and try to click on a link you will notice that the link to the forum will not work.
This is because the link requires a "#" sign.
Open up the inc/classes/BxDolGroups.php and go to line on or about 423 and add a # in front of "forum".
$caption_item = '<div class="caption_item">';
if ( $this->isGroupMember( $iMemberID, $iGroupID ) ) //jt note - group
$caption_item .= "<a
href=\"{$site['groups']}orca/#forum/{$sForumUri}-0.htm#action=goto&new_topic={$sForumUri}\">{$sPostNewTopic}</a>
| ";
$caption_item .= "<a href=\"{$site['groups']}orca/#forum/{$sForumUri}-0.htm\">{$sViewAllForum}</a>";
$caption_item .= '</div>';
On or about line 447, you also need to add "#" in front of forum:
//jt note
$sRetHtml .= $this->genGroupActionBtn( 'Post topic',
"groups/orca/#forum/{$sForumUri}-0.htm#action=goto&new_topic={$sForumUri}"
);
You also need to open up templates/base/xsl/group_last_topics.xsl
and to line on or about 36. You need to add a "#" in front of "topics".
You need to do this:
<b>
<xsl:element name="a">
<xsl:attribute name="href">groups/orca/#topic/<xsl:value-of select="uri" />.htm</xsl:attribute>
<xsl:value-of select="title" />
</xsl:element>
</b>