Bug #3417 ยป 3417.patch
components/com_comprofiler/plugin/user/plug_pms_mypmspro/pms.mypmspro.php | ||
---|---|---|
// strip any bb code that might be present, but only in 0.4
|
||
if($pmsType==3) {
|
||
require_once ( $_CB_framework->getCfg('absolute_path') . '/components/com_uddeim/bbparser.php' );
|
||
$udde_msg=bbcode_strip($udde_msg);
|
||
if ( function_exists( 'bbcode_strip' ) ) {
|
||
$udde_msg=bbcode_strip($udde_msg);
|
||
} elseif ( function_exists( 'uddeIMbbcode_strip' ) ) {
|
||
$udde_msg=uddeIMbbcode_strip($udde_msg);
|
||
}
|
||
}
|
||
|
||
// now strip the remaining html tags
|