Changeset 1074815
- Timestamp:
- 01/24/2015 12:25:54 PM (11 years ago)
- Location:
- work-the-flow-file-upload/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (3 diffs)
-
admin/class-wtf-fu-admin.php (modified) (2 diffs)
-
public/class-wtf-fu.php (modified) (2 diffs)
-
work-the-flow-file-upload.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
work-the-flow-file-upload/trunk/README.txt
r1072291 r1074815 5 5 Requires at least: 3.5.1 6 6 Tested up to: 4.1 7 Stable tag: 2.5. 07 Stable tag: 2.5.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 325 325 326 326 == Changelog == 327 = 2.5.1 = 328 * Bug fix for admin add workflow button not working (broken in 2.5.0) 329 * Bug fix for unable to save workflows with a workflow id ending in 0, so workflows with id=10, 20 .. etc would fail to save any changes during editing. 330 327 331 = 2.5.0 = 328 332 * Fix for IOS and Mac Safari browsers getting stuck on the same stage. (Special thanks to Marie for her detailed help in testing on many platforms). … … 472 476 473 477 == Upgrade Notice == 478 = 2.5.1 = 479 * Bug fix for admin add workflow button not working (broken in 2.5.0) 480 * Bug fix for unable to save workflows with a workflow id ending in 0, so workflows with id=10, 20 .. etc would fail to save any changes during editing. 481 474 482 = 2.5.0 = 475 483 * Fix for IOS and Mac Safari browsers getting stuck on the same stage. (Special thanks to Marie for her detailed help in testing on many platforms). -
work-the-flow-file-upload/trunk/admin/class-wtf-fu-admin.php
r1072291 r1074815 896 896 * Stage page key -- test first 897 897 */ 898 $pattern = Wtf_Fu_Option_Definitions::get_workflow_stage_key('([1-9] +)', '([0-9]+)');898 $pattern = Wtf_Fu_Option_Definitions::get_workflow_stage_key('([1-9][0-9]*)', '([0-9]+)'); 899 899 $matches = array(); 900 900 … … 914 914 * Workflow page key 915 915 */ 916 $pattern = Wtf_Fu_Option_Definitions::get_workflow_options_key('([1-9] +)');916 $pattern = Wtf_Fu_Option_Definitions::get_workflow_options_key('([1-9][0-9]*)'); 917 917 918 918 if (preg_match("/^{$pattern}$/", $option_page, $matches)) { -
work-the-flow-file-upload/trunk/public/class-wtf-fu.php
r1072291 r1074815 35 35 * 36 36 * @package Wtf_Fu 37 * @author Your Name < email@example.com>37 * @author Your Name <lynton@wtf-fu.com> 38 38 */ 39 39 class Wtf_Fu { … … 44 44 * @var string 45 45 */ 46 const VERSION = '2.5. 0';46 const VERSION = '2.5.1'; 47 47 48 48 /** -
work-the-flow-file-upload/trunk/work-the-flow-file-upload.php
r1072291 r1074815 5 5 * Plugin URI: http://wtf-fu.com 6 6 * Description: Front end Html5 File Upload and configurable Workflow steps. Multiple file drag and drop, gallery image display, file reordering and archiving. 7 * Version: 2.5. 07 * Version: 2.5.1 8 8 * Author: Lynton Reed 9 9 * Author URI: http://wtf-fu.com … … 71 71 *----------------------------------------------------------------------------*/ 72 72 73 74 75 /* 76 * Load the admin class only if we are *really* admin and not admin just 77 * because of a front end AJAX call. 78 */ 79 if ( is_admin() && ( ! defined( 'DOING_AJAX' ) || ! DOING_AJAX ) ) { 80 //if ( is_admin() ) { 73 if ( is_admin() ) { 81 74 require_once( plugin_dir_path( __FILE__ ) . 'admin/class-wtf-fu-admin.php' ); 82 75 add_action( 'plugins_loaded', array( 'Wtf_Fu_Admin', 'get_instance' ) );
Note: See TracChangeset
for help on using the changeset viewer.