Forums
(@webstract)
3 years, 8 months ago
@seanconklin Excellent!
12 years, 1 month ago
It should be there… https://core.trac.ww.wp.xz.cn/browser/branches/3.9/src/wp-includes/shortcodes.php#L193
I found a quick fix…
On in /wp-includes/shortcodes.php on line 193
/wp-includes/shortcodes.php
Change: if ( false === strpos( $content, '[' ) ) {
if ( false === strpos( $content, '[' ) ) {
To: if ( false === strpos( (string) $content, '[' ) ) {
if ( false === strpos( (string) $content, '[' ) ) {
Basically just cast the $content variable as a string
$content