
Quote:
At least with version is easiest to delete the spam, but it doesn’t have the typical text you have to introduce prior to the post to avoid spam.
At least with version is easiest to delete the spam, but it doesn’t have the typical text you have to introduce prior to the post to avoid spam.
At class/theme_blocks.php I added a global '$block'
function retrieveBlocks() {
global $xoopsUser, $xoopsModule, $xoopsConfig, $block;
This way we are able to get the block id inside a block function using this:
if( is_object( $GLOBALS['block'])) {
// bid from newblocks
$bid = $GLOBALS['block']->getVar('bid') ;
}
You need to apply the above method in piCal\blocks\pical_minical_ex.php line 35