Notice: Use of undefined constant SCRIPT_DEBUG

This is a known bug

As far as I’m concerned, you can easily fix it by replacing

if ( SCRIPT_DEBUG ) {

with

if ( defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ) {

That should suppress the error for now.

When WordPress is updated again, this error may be overwritten, but I believe it will be fixed in the next update.

UPDATE

Fixed at build 32482.

Leave a Comment