Plugin Directory

Changeset 675981


Ignore:
Timestamp:
03/04/2013 10:11:00 AM (13 years ago)
Author:
micc83
Message:

0.1.1

Location:
wpdevtool/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wpdevtool/trunk/readme.txt

    r663396 r675981  
    77Requires at least: 3.0.1
    88Tested up to: 3.5
    9 Stable tag: 0.1.0
     9Stable tag: 0.1.1
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9494
    9595= 0.1.0 =
     96Fix a problem with crons visualization on same date
     97
     98= 0.1.0 =
    9699Major update and minor bug fixes
    97100
  • wpdevtool/trunk/views/crons.php

    r663355 r675981  
    7272        if ( !empty( $crons ) ){
    7373            foreach ( $crons as $data => $cron_by_date ) {
    74                 foreach ( $cron_by_date as $cron_name => $single_cron ) {           
    75                     $crons_table[] = array_merge( array( 'date' => date_i18n( 'd/m/Y H:i:s', $data ), 'name' => $cron_name ), array_shift( $single_cron ) );
     74                foreach ( $cron_by_date as $cron_name => $single_cron ) {       
     75                    foreach ( $single_cron as $cron ) {
     76                        $crons_table[] = array_merge( array( 'date' => date_i18n( 'd/m/Y H:i:s', $data ), 'name' => $cron_name ), $cron );
     77                    }
    7678                }
    7779            }
  • wpdevtool/trunk/wpdevtool.php

    r663359 r675981  
    44Plugin URI: https://github.com/micc83/WpDevTool
    55Description: A simple tool to develop on WordPress platform...
    6 Version: 0.1.0
     6Version: 0.1.1
    77Author: Alessandro Benoit
    88Author URI: http://codeb.it
Note: See TracChangeset for help on using the changeset viewer.