Plugin Directory

Changeset 1211935


Ignore:
Timestamp:
08/03/2015 04:32:50 PM (11 years ago)
Author:
dimitrov.adrian
Message:

0.8.3

Location:
scifi-task-manager/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • scifi-task-manager/trunk/readme.txt

    r1210935 r1211935  
    117117== Changelog ==
    118118
     119= 0.8.3 =
     120* Fixed PHP warnings
     121
    119122= 0.8.2 =
    120123* Added status and priorities labels and colors editing in admin panel
  • scifi-task-manager/trunk/scifi-task-manager.php

    r1210919 r1211935  
    77 * Author:      Adrian Dimitrov <dimitrov.adrian@gmail.com>
    88 * Author URI:  http://e01.scifi.bg/
    9  * Version:     0.8.2
     9 * Version:     0.8.3
    1010 * Text Domain: scifi-task-manager
    1111 * Domain Path: /languages/
     
    507507  $num_posts = wp_count_posts( $post_type, 'readable' );
    508508  $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']);
    510510
    511511  $all_inner_html = sprintf(
     
    537537      $class = ' class="current"';
    538538      unset($current_status_[$current_status_ik]);
     539      if (!$current_status_) {
     540        $current_status_ = array('all');
     541      }
    539542    }
    540543    else {
Note: See TracChangeset for help on using the changeset viewer.