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

feature 2387: addd a filter by tag in the batch manager (merge from trunk)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2/admin/batch_manager_global.php

    r11056 r11854  
    486486    )
    487487  );
     488
     489if (!empty($_SESSION['bulk_manager_filter']['tags']))
     490{
     491        $query = '
     492SELECT id, name
     493        FROM '.TAGS_TABLE.'
     494        WHERE id IN ('.implode(',', $_SESSION['bulk_manager_filter']['tags']).')';
     495        $template->assign('filter_tags', get_taglist($query));
     496}
    488497
    489498// Virtualy associate a picture to a category
Note: See TracChangeset for help on using the changeset viewer.