Changeset 2372699
- Timestamp:
- 09/01/2020 01:56:16 AM (6 years ago)
- Location:
- mobile-builder/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (1 diff)
-
helpers/mobile-builder-functions.php (modified) (1 diff)
-
mobile-builder.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
mobile-builder/trunk/README.txt
r2372265 r2372699 42 42 43 43 == Changelog == 44 45 = 1.4.9 = 46 47 * Fixed: Allow Authentication user for Wcfm and Dokan thought mobile-builder 44 48 45 49 = 1.4.8 = -
mobile-builder/trunk/helpers/mobile-builder-functions.php
r2364781 r2372699 130 130 } 131 131 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/' ); 134 135 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; 136 144 } -
mobile-builder/trunk/mobile-builder.php
r2372265 r2372699 11 11 * Plugin URI: https://doc-oreo.rnlab.io 12 12 * Description: The most advanced drag & drop app builder. Create multi templates and app controls. 13 * Version: 1.1. 813 * Version: 1.1.9 14 14 * Author: Rnlab.io 15 15 * Author URI: https://rnlab.io
Note: See TracChangeset
for help on using the changeset viewer.