Make WordPress Core


Ignore:
Timestamp:
09/20/2015 03:51:55 AM (11 years ago)
Author:
wonderboymusic
Message:

Pass false as the 2nd argument to class_exists() to disable autoloading and to not cause problems for those who define __autoload().

Fixes #20523.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/ajax-actions.php

    r34313 r34348  
    11661166    $walker_class_name = apply_filters( 'wp_edit_nav_menu_walker', 'Walker_Nav_Menu_Edit', $_POST['menu'] );
    11671167
    1168     if ( ! class_exists( $walker_class_name ) )
     1168    if ( ! class_exists( $walker_class_name, false ) )
    11691169        wp_die( 0 );
    11701170
Note: See TracChangeset for help on using the changeset viewer.