shortcodes should not require var=val format. Props andy. fixes #5892
git-svn-id: http://svn.automattic.com/wordpress/trunk@6939 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b09e83ddca
commit
4bbe72cd41
|
@ -111,6 +111,8 @@ function shortcode_parse_atts($text) {
|
||||||
elseif (isset($m[8]))
|
elseif (isset($m[8]))
|
||||||
$atts[] = stripcslashes($m[8]);
|
$atts[] = stripcslashes($m[8]);
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
$atts = ltrim($text);
|
||||||
}
|
}
|
||||||
return $atts;
|
return $atts;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue