Plugin Directory

Changeset 1074815


Ignore:
Timestamp:
01/24/2015 12:25:54 PM (11 years ago)
Author:
lynton_reed
Message:

Additional security features added. Fixes for IPhone browser "next" button problem.

Location:
work-the-flow-file-upload/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • work-the-flow-file-upload/trunk/README.txt

    r1072291 r1074815  
    55Requires at least: 3.5.1
    66Tested up to: 4.1
    7 Stable tag: 2.5.0
     7Stable tag: 2.5.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    325325
    326326== 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
    327331= 2.5.0 =
    328332* 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).
     
    472476
    473477== 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
    474482= 2.5.0 =
    475483* 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  
    896896         * Stage page key  -- test first
    897897         */
    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]+)');
    899899        $matches = array();
    900900
     
    914914         * Workflow page key
    915915         */
    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]*)');
    917917
    918918        if (preg_match("/^{$pattern}$/", $option_page, $matches)) {
  • work-the-flow-file-upload/trunk/public/class-wtf-fu.php

    r1072291 r1074815  
    3535 *
    3636 * @package Wtf_Fu
    37  * @author  Your Name <email@example.com>
     37 * @author  Your Name <lynton@wtf-fu.com>
    3838 */
    3939class Wtf_Fu {
     
    4444     * @var     string
    4545     */
    46     const VERSION = '2.5.0';
     46    const VERSION = '2.5.1';
    4747
    4848    /**
  • work-the-flow-file-upload/trunk/work-the-flow-file-upload.php

    r1072291 r1074815  
    55 * Plugin URI:        http://wtf-fu.com
    66 * 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.0
     7 * Version:           2.5.1
    88 * Author:            Lynton Reed
    99 * Author URI:        http://wtf-fu.com
     
    7171 *----------------------------------------------------------------------------*/
    7272
    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() ) {
     73if ( is_admin() ) {
    8174    require_once( plugin_dir_path( __FILE__ ) . 'admin/class-wtf-fu-admin.php' );
    8275    add_action( 'plugins_loaded', array( 'Wtf_Fu_Admin', 'get_instance' ) ); 
Note: See TracChangeset for help on using the changeset viewer.