mirror of
https://github.com/e107inc/e107.git
synced 2025-04-20 04:32:01 +02:00
Merge pull request #3214 from SimSync/fix_3162
Fixes #3161 Fixes htmlized shortcode parameters
This commit is contained in:
commit
89731bed82
@ -1021,6 +1021,8 @@ class e_parse_shortcode
|
||||
$fullShortcodeKey = $newMatch[0];
|
||||
$code = $newMatch[1];
|
||||
$parmStr = trim($newMatch[2]);
|
||||
// fix for #3161: htmlized shortcode parameters ...
|
||||
$parmStr = str_ireplace('&', '&', $parmStr);
|
||||
$debugParm = $parmStr;
|
||||
parse_str($parmStr,$parm);
|
||||
$parmArray = true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user