Make it obvious that do_shortcode_tag passes the tag as the third parameter. plus code spacing cleanup.

git-svn-id: http://svn.automattic.com/wordpress/trunk@12750 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
markjaquith 2010-01-17 22:51:15 +00:00
parent 45b2389358
commit e0872e840c
1 changed files with 6 additions and 6 deletions

View File

@ -203,10 +203,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[2]) . $m[6];
return $m[1] . call_user_func( $shortcode_tags[$tag], $attr, $m[5], $tag ) . $m[6];
} else {
// self-closing tag
return $m[1] . call_user_func($shortcode_tags[$tag], $attr, NULL, $m[2]) . $m[6];
return $m[1] . call_user_func( $shortcode_tags[$tag], $attr, NULL, $tag ) . $m[6];
}
}