Make WordPress Core

Ticket #23026: 23026.patch

File 23026.patch, 491 bytes (added by SergeyBiryukov, 12 years ago)
  • wp-admin/includes/template.php

     
    680680        if ( $items ) {
    681681                foreach ( $items as $item ) {
    682682                        // A page cannot be its own parent.
    683                         if ( $post->ID && $item->ID == $post->ID )
     683                        if ( $post && $post->ID && $item->ID == $post->ID )
    684684                                continue;
    685685
    686686                        $pad = str_repeat( ' ', $level * 3 );