From: <dai...@us...> - 2013-02-02 00:07:17
|
Revision: 5810 http://sourceforge.net/p/web-erp/reponame/5810 Author: daintree Date: 2013-02-02 00:07:10 +0000 (Sat, 02 Feb 2013) Log Message: ----------- Fixes to wiki links Modified Paths: -------------- trunk/includes/MiscFunctions.php Modified: trunk/includes/MiscFunctions.php =================================================================== --- trunk/includes/MiscFunctions.php 2013-02-02 00:01:58 UTC (rev 5809) +++ trunk/includes/MiscFunctions.php 2013-02-02 00:07:10 UTC (rev 5810) @@ -248,11 +248,11 @@ $WikiPath='../' . $_SESSION['WikiPath'] . '/'; } if ($_SESSION['WikiApp']==_('WackoWiki')){ - echo '<a target="_blank" href="' . $WikiPath . $WikiType . $WikiPageID . '" target="_blank">' . _('Wiki ' . $WikiType . ' Knowledge Base') . ' </a> <br />'; + echo '<a target="_blank" href="' . $WikiPath . $WikiType . $WikiPageID . '">' . _('Wiki ' . $WikiType . ' Knowledge Base') . ' </a> <br />'; } elseif ($_SESSION['WikiApp']==_('MediaWiki')){ echo '<a target="_blank" href="' . $WikiPath . 'index.php/' . $WikiType . '/' . $WikiPageID . '">' . _('Wiki ' . $WikiType . ' Knowledge Base') . '</a><br />'; } elseif ($_SESSION['WikiApp']==_('DokuWiki')){ - echo '<a target="_blank" href="' . $WikiPath . '/doku.php?id=' . $WikiType . ':' . $WikiPageID . '" target="_blank">' . _('Wiki ' . $WikiType . ' Knowledge Base') . '</a><br />'; + echo '<a target="_blank" href="' . $WikiPath . '/doku.php?id=' . $WikiType . ':' . $WikiPageID . '">' . _('Wiki ' . $WikiType . ' Knowledge Base') . '</a><br />'; } } |