Make WordPress Core


Ignore:
Timestamp:
11/19/2006 01:12:36 AM (18 years ago)
Author:
ryan
Message:

Don't allow a category to be it's own parent. Props donncha. fixes #3278

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/admin-db.php

    r4364 r4490  
    151151
    152152    $cat_ID = (int) $catarr['cat_ID'];
     153
     154    if( $cat_ID == $catarr['category_parent'] )
     155        return false;
    153156
    154157    // First, get all of the original fields
Note: See TracChangeset for help on using the changeset viewer.