Changeset 2670363
- Timestamp:
- 02/01/2022 08:24:04 AM (4 years ago)
- Location:
- stionic-core/trunk
- Files:
-
- 3 edited
-
endpoints/class-stionic-tools.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
-
stionic-core.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
stionic-core/trunk/endpoints/class-stionic-tools.php
r2308778 r2670363 37 37 function final_url( $request ){ 38 38 $params = $request->get_params(); 39 $params['url'] = esc_url($params['url']);39 // $params['url'] = esc_url($params['url']); 40 40 $ch = curl_init(); 41 41 curl_setopt($ch, CURLOPT_URL, $params['url']); … … 52 52 $url = substr($url, strpos($url, 'http'), strlen($url)-strpos($url, 'http')); 53 53 $url = str_replace(array('http//', 'https//'), array('http://', 'https://'), $url); 54 $url = esc_url($url);54 // $url = esc_url($url); 55 55 $request->set_param('url', $url); 56 56 $url = $this->final_url($request); -
stionic-core/trunk/readme.txt
r2591532 r2670363 1 1 === Stionic Core - Create Mobile app for WordPress news === 2 Contributors: Stionic2 Contributors: Noncheat 3 3 Donate link: https://noncheat.com/donate/ 4 4 Tags: create app, wordpress news app, mobile app wordpress, api 5 5 Requires at least: 4.7 6 Tested up to: 5. 87 Stable tag: 1.0.2 36 Tested up to: 5.9 7 Stable tag: 1.0.24 8 8 Requires PHP: 5.2.4 9 9 License: GPLv2 or later … … 74 74 == Changelog == 75 75 76 = 1.0.24 = 77 * Fix deeplinks tool esc_url 78 76 79 = 1.0.23 = 77 80 * Add default ads reward value in General setting … … 174 177 == Upgrade Notice == 175 178 179 = 1.0.24 = 180 Fix deeplinks tool esc_url 181 176 182 = 1.0.23 = 177 183 Add default ads reward value in General setting -
stionic-core/trunk/stionic-core.php
r2591532 r2670363 4 4 * Plugin URI: https://noncheat.com/category/plugins/stionic-core/ 5 5 * Description: Extending the REST API for Wordpress application 6 * Version: 1.0.2 37 * Author: Stionic6 * Version: 1.0.24 7 * Author: Noncheat 8 8 * Author URI: https://noncheat.com 9 9 * Requires at least: 4.7 10 * Tested up to: 5. 810 * Tested up to: 5.9 11 11 */ 12 12 if ( ! defined( 'ABSPATH' ) ) {
Note: See TracChangeset
for help on using the changeset viewer.