Ignore:
Timestamp:
Feb 7, 2005, 10:44:21 PM (19 years ago)
Author:
plg
Message:
  • bug fixed : can't find a new category id for virtual category creation if no existing category.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/cat_list.php

    r675 r728  
    7979    // what will be the inserted id ?
    8080    $query = '
    81 SELECT MAX(id)+1
     81SELECT IF(MAX(id)+1 IS NULL, 1, MAX(id)+1)
    8282  FROM '.CATEGORIES_TABLE.'
    8383;';
Note: See TracChangeset for help on using the changeset viewer.