Changeset 1211935
- Timestamp:
- 08/03/2015 04:32:50 PM (11 years ago)
- Location:
- scifi-task-manager/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (1 diff)
-
scifi-task-manager.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
scifi-task-manager/trunk/readme.txt
r1210935 r1211935 117 117 == Changelog == 118 118 119 = 0.8.3 = 120 * Fixed PHP warnings 121 119 122 = 0.8.2 = 120 123 * Added status and priorities labels and colors editing in admin panel -
scifi-task-manager/trunk/scifi-task-manager.php
r1210919 r1211935 7 7 * Author: Adrian Dimitrov <dimitrov.adrian@gmail.com> 8 8 * Author URI: http://e01.scifi.bg/ 9 * Version: 0.8. 29 * Version: 0.8.3 10 10 * Text Domain: scifi-task-manager 11 11 * Domain Path: /languages/ … … 507 507 $num_posts = wp_count_posts( $post_type, 'readable' ); 508 508 $total_posts = array_sum( (array) $num_posts ); 509 $current_status = empty($_REQUEST['post_status']) ? '': explode(',', $_REQUEST['post_status']);509 $current_status = empty($_REQUEST['post_status']) ? array() : explode(',', $_REQUEST['post_status']); 510 510 511 511 $all_inner_html = sprintf( … … 537 537 $class = ' class="current"'; 538 538 unset($current_status_[$current_status_ik]); 539 if (!$current_status_) { 540 $current_status_ = array('all'); 541 } 539 542 } 540 543 else {
Note: See TracChangeset
for help on using the changeset viewer.