- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/comments.php
r1528 r1719 28 28 # Creating filter combo boxes 29 29 # Filter form we'll put in html_block 30 $status_combo = array( 31 '-' => '' 32 ); 33 foreach ($core->blog->getAllCommentStatus() as $k => $v) { 34 $status_combo[$v] = (string) $k; 35 } 30 $status_combo = array_merge( 31 array('-' => ''), 32 dcAdminCombos::getCommentStatusescombo() 33 ); 34 36 35 37 36 $type_combo = array(
Note: See TracChangeset
for help on using the changeset viewer.