Changeset 2908566
- Timestamp:
- 05/05/2023 01:38:58 PM (3 years ago)
- Location:
- ryen-wp/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (2 diffs)
-
public/class-ryen-public.php (modified) (1 diff)
-
ryen.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ryen-wp/trunk/README.txt
r2908242 r2908566 6 6 License: GPL 2.0 7 7 License URI: http://www.gnu.org/licenses/gpl-2.0.txt 8 Stable Tag: 3.1. 98 Stable Tag: 3.1.10 9 9 10 10 == Description == … … 26 26 27 27 == Changelog == 28 = 3.1.10 = 29 * Fix custom apiHost variable name 30 28 31 = 3.1.8 = 29 32 * Fix forward wp user variable when not initialized -
ryen-wp/trunk/public/class-ryen-public.php
r2908232 r2908566 91 91 $ryen = sanitize_text_field($attributes['ryen']); 92 92 } 93 if (array_key_exists(' apiHost', $attributes)) {94 $api_host = sanitize_text_field($attributes[' apiHost']);93 if (array_key_exists('host', $attributes)) { 94 $api_host = sanitize_text_field($attributes['host']); 95 95 } 96 96 if (!$ryen) { -
ryen-wp/trunk/ryen.php
r2908232 r2908566 4 4 * Plugin Name: Ryen WP 5 5 * Description: Convert more with conversational forms 6 * Version: 3.1. 96 * Version: 3.1.10 7 7 * Author: Ryen 8 8 * Author URI: http://ryen.org/ … … 17 17 } 18 18 19 define('RYEN_VERSION', '3.1. 9');19 define('RYEN_VERSION', '3.1.10'); 20 20 21 21 function activate_ryen()
Note: See TracChangeset
for help on using the changeset viewer.