Actions
Bug #3552
openModule image link Itemid only appended on CB pages
Description
When the module is on a CB page the Itemid is appended properly. However, when you're not on a CB page the image links are missing Itemid. This can be confirmed even using our demo site below.
Home Page (missing Itemid):
https://www.joomlapolis.com/community-builder
Profile (Itemid present):
http://templates.joomlapolis.com/demo/mycommunity/j15/index.php?option=com_comprofiler&task=userProfile&user=63&Itemid=58
Updated by nant about 12 years ago
- Status changed from New to Resolved
- Target version set to 1.2.2
- % Done changed from 0 to 100
Changed
$cbgallery_sefaddress = cbSef( "index.php?option=com_comprofiler&task=userProfile&user=$pgitemuserprofileid&tab=getProfileGalleryTab" );
to
$cbgallery_sefaddress = $_CB_framework->userProfileUrl( $pgitemuserprofileid, false, 'getProfileGalleryTab' );
Actions