# This patch file was generated by NetBeans IDE # Following Index: paths are relative to: Joomla root # This patch can be applied using context Tools: Patch action on respective folder. # It uses platform neutral UTF-8 encoding and \n newlines. # Above lines and this line are ignored by the patching process. --- components/com_comprofiler/plugin/user/plug_cbmamboauthortab/cb.authortab.php +++ components/com_comprofiler/plugin/user/plug_cbmamboauthortab/cb.authortab.php @@ -115,7 +115,12 @@ } if ( $jVer == 2 ) { require_once( $_CB_framework->getCfg( 'absolute_path' ) . '/components/com_content/helpers/route.php' ); - $url = cbSef( ContentHelperRoute::getArticleRoute( $item->slug, $item->catid ) ); \ No newline at end of file + $url = ContentHelperRoute::getArticleRoute( $item->id, $item->catid ); + if ( ! stristr( $url, 'Itemid' ) ) { + $url = $_CB_framework->getCfg( 'live_site' ) . '/' . $url; + } else { + $url = cbSef( $url ); + } \ No newline at end of file } elseif ( $jVer == 1 ) { $url = cbSef( 'index.php?option=com_content&view=article&id=' . $item->slug . '&catid=' . $item->catslug . $itemidtxt ); } else {