Hi,
in TF_SHORTCODES.php file (framework\extensions\shortcodes) this code:
$message = $func[0]::$func[1]($atts, $content);
need to be replaced with:
$message = $func[0]->$func[1]($atts, $content);
and in SHORTCODES.php file (framework\extensions\shortcodes\helpers) this code:
$ret = $func[0]::$func[1]($func_args[0], $func_args[1], $func_args[2]);
need to be replaced with:
$ret = $func[0]->$func[1]($func_args[0], $func_args[1], $func_args[2]);
Cheers,
Max.





Add Reply
You must log in to post.