Make WordPress Core

Ticket #18716: 18716.2.patch

File 18716.2.patch, 521 bytes (added by johnbillion, 15 years ago)
  • wp-admin/edit-tags.php

     
    99/** WordPress Administration Bootstrap */
    1010require_once('./admin.php');
    1111$tax = get_taxonomy( $taxnow );
     12if ( !$tax )
     13        wp_die( __( 'You attempted to edit an item that doesn’t exist. Perhaps it was deleted?' ) );
    1214if ( !current_user_can( $tax->cap->manage_terms ) )
    1315        wp_die( __( 'Cheatin’ uh?' ) );
    1416