Fix regression in shortcode behaviour. Fixes #9238 props tellyworth.
git-svn-id: https://develop.svn.wordpress.org/trunk@10658 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
e9cf7ea892
commit
0477e4426d
@ -202,10 +202,10 @@ function do_shortcode_tag($m) {
|
||||
|
||||
if ( isset($m[5]) ) {
|
||||
// enclosing tag - extra parameter
|
||||
return $m[1] . call_user_func($shortcode_tags[$tag], $attr, $m[5]) . $m[6];
|
||||
return $m[1] . call_user_func($shortcode_tags[$tag], $attr, $m[5], $m[2]) . $m[6];
|
||||
} else {
|
||||
// self-closing tag
|
||||
return $m[1] . call_user_func($shortcode_tags[$tag], $attr) . $m[6];
|
||||
return $m[1] . call_user_func($shortcode_tags[$tag], $attr, NULL, $m[2]) . $m[6];
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user