Changeset 11220 for trunk/admin
- Timestamp:
- Jun 3, 2011, 6:40:25 PM (13 years ago)
- Location:
- trunk/admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/batch_manager_unit.php
r11192 r11220 107 107 108 108 // tags management 109 if (isset($_POST[ 'tags-'.$row['id'] ]) AND $_POST[ 'tags-'.$row['id'] ] != null) 109 $tag_ids = array(); 110 if (!empty($_POST[ 'tags-'.$row['id'] ])) 110 111 { 111 112 $tag_ids = get_tag_ids($_POST[ 'tags-'.$row['id'] ]); 112 }113 else114 {115 $tag_ids = array();116 113 } 117 114 set_tags($tag_ids, $row['id']); -
trunk/admin/picture_modify.php
r11039 r11220 165 165 // time to deal with tags 166 166 $tag_ids = array(); 167 if ( isset($_POST['tags']))167 if (!empty($_POST['tags'])) 168 168 { 169 169 $tag_ids = get_tag_ids($_POST['tags']);
Note: See TracChangeset
for help on using the changeset viewer.