Ignore:
Timestamp:
Jul 25, 2012, 3:22:56 PM (12 years ago)
Author:
mistic100
Message:

clean up table when a category is deleted

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/SmartAlbums/include/functions.inc.php

    r16924 r17013  
    538538}
    539539
     540/**
     541 * clean table when categories are deleted
     542 */
     543function smart_delete_categories($ids)
     544{
     545  $query = '
     546DELETE FROM '.CATEGORY_FILTERS_TABLE.'
     547  WHERE category_id IN('.implode(',', $ids).')
     548;';
     549  pwg_query($query);
     550}
     551
    540552?>
Note: See TracChangeset for help on using the changeset viewer.