Changeset 2848435
- Timestamp:
- 01/14/2023 05:14:20 PM (3 years ago)
- Location:
- slider-templates/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (1 diff)
-
admin/class-slider-templates-admin.php (modified) (1 diff)
-
slider-templates.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
slider-templates/trunk/README.txt
r2423015 r2848435 5 5 Requires at least: 5.0 6 6 Tested up to: 5.4 7 Stable tag: 5.47 Stable tag: 1.0.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
slider-templates/trunk/admin/class-slider-templates-admin.php
r2423015 r2848435 230 230 231 231 $response = wp_remote_get( 'https://slider-templates.com/wp-content/plugins/indeed-membership-pro/apigate.php?ihch=0g2gmyQKwnWbhjCRyRXGC6M3garvs&action=verify_user_level&uid='.$id.'&lid=3' ); 232 $data = json_decode( wp_remote_retrieve_body($response) ); 233 return $data->response; 234 232 $data = json_decode( wp_remote_retrieve_body($response) ); 233 if( $data !== false && is_object($data) ) 234 return $data->response; 235 return false; 235 236 } 236 237 -
slider-templates/trunk/slider-templates.php
r2423015 r2848435 17 17 * Plugin URI: wordpress.org/plugins/slider-templates 18 18 * Description: Easily Import slider-templates.com templates to WP 19 * Version: 1.0. 219 * Version: 1.0.3 20 20 * Author: Codeless 21 21 * Author URI: codeless.co … … 36 36 * Rename this for your plugin and update it as you release new versions. 37 37 */ 38 define( 'SLIDER_TEMPLATES_VERSION', '1.0. 2' );38 define( 'SLIDER_TEMPLATES_VERSION', '1.0.3' ); 39 39 40 40 /**
Note: See TracChangeset
for help on using the changeset viewer.