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:
Peter Westwood 2009-02-27 17:01:59 +00:00
parent e9cf7ea892
commit 0477e4426d
1 changed files with 2 additions and 2 deletions

View File

@ -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];
}
}