Changeset 675981
- Timestamp:
- 03/04/2013 10:11:00 AM (13 years ago)
- Location:
- wpdevtool/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (2 diffs)
-
views/crons.php (modified) (1 diff)
-
wpdevtool.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wpdevtool/trunk/readme.txt
r663396 r675981 7 7 Requires at least: 3.0.1 8 8 Tested up to: 3.5 9 Stable tag: 0.1. 09 Stable tag: 0.1.1 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 94 94 95 95 = 0.1.0 = 96 Fix a problem with crons visualization on same date 97 98 = 0.1.0 = 96 99 Major update and minor bug fixes 97 100 -
wpdevtool/trunk/views/crons.php
r663355 r675981 72 72 if ( !empty( $crons ) ){ 73 73 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 } 76 78 } 77 79 } -
wpdevtool/trunk/wpdevtool.php
r663359 r675981 4 4 Plugin URI: https://github.com/micc83/WpDevTool 5 5 Description: A simple tool to develop on WordPress platform... 6 Version: 0.1. 06 Version: 0.1.1 7 7 Author: Alessandro Benoit 8 8 Author URI: http://codeb.it
Note: See TracChangeset
for help on using the changeset viewer.