Plugin Directory

Changeset 2372699


Ignore:
Timestamp:
09/01/2020 01:56:16 AM (6 years ago)
Author:
rnlab
Message:

bump: 1.1.8

Location:
mobile-builder/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • mobile-builder/trunk/README.txt

    r2372265 r2372699  
    4242
    4343== Changelog ==
     44
     45= 1.4.9 =
     46
     47* Fixed: Allow Authentication user for Wcfm and Dokan thought mobile-builder
    4448
    4549= 1.4.8 =
  • mobile-builder/trunk/helpers/mobile-builder-functions.php

    r2364781 r2372699  
    130130    }
    131131
    132     $rest_prefix         = trailingslashit( rest_get_url_prefix() );
    133     $is_rest_api_request = ( false !== strpos( $_SERVER['REQUEST_URI'], $rest_prefix . 'mobile-builder/' ) );
     132    $rest_prefix = trailingslashit( rest_get_url_prefix() );
     133    $uri         = $_SERVER['REQUEST_URI'];
     134    $allows      = array( 'mobile-builder/', 'wcfmmp/', 'dokan/' );
    134135
    135     return $is_rest_api_request;
     136    foreach ( $allows as $allow ) {
     137        $check = strpos( $uri, $rest_prefix . $allow ) !== false;
     138        if ( $check ) {
     139            return true;
     140        }
     141    }
     142
     143    return false;
    136144}
  • mobile-builder/trunk/mobile-builder.php

    r2372265 r2372699  
    1111 * Plugin URI:        https://doc-oreo.rnlab.io
    1212 * Description:       The most advanced drag & drop app builder. Create multi templates and app controls.
    13  * Version:           1.1.8
     13 * Version:           1.1.9
    1414 * Author:            Rnlab.io
    1515 * Author URI:        https://rnlab.io
Note: See TracChangeset for help on using the changeset viewer.