Changeset 1769:6970a9e9bd50
- Timestamp:
- 09/10/13 10:29:37 (12 years ago)
- Branch:
- 2.5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/posts.php
r1179 r1769 63 63 $categories_combo[__('None')] = 'NULL'; 64 64 while ($categories->fetch()) { 65 $ categories_combo[str_repeat(' ',$categories->level-1).($categories->level-1 == 0 ? '' : '• ').65 $label = str_repeat(' ',$categories->level-1).($categories->level-1 == 0 ? '' : '• '). 66 66 html::escapeHTML($categories->cat_title). 67 ' ('.$categories->nb_post.')'] = $categories->cat_id; 68 } 69 67 ' ('.$categories->nb_post.')'; 68 while (array_key_exists($label,$categories_combo)) { 69 $label .= ' '; 70 } 71 $categories_combo[$label] = $categories->cat_id; 72 } 73 70 74 $status_combo = array( 71 75 '-' => ''
Note: See TracChangeset
for help on using the changeset viewer.