Ignore:
Timestamp:
Jul 30, 2011, 6:49:02 AM (13 years ago)
Author:
rvelices
Message:

feature 2387: addd a filter by tag in the batch manager

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/batch_manager_global.php

    r11039 r11853  
    538538    )
    539539  );
     540
     541if (!empty($_SESSION['bulk_manager_filter']['tags']))
     542{
     543        $query = '
     544SELECT id, name
     545        FROM '.TAGS_TABLE.'
     546        WHERE id IN ('.implode(',', $_SESSION['bulk_manager_filter']['tags']).')';
     547        $template->assign('filter_tags', get_taglist($query));
     548}
    540549
    541550// Virtualy associate a picture to a category
Note: See TracChangeset for help on using the changeset viewer.