Plugin Directory

Changeset 2908566


Ignore:
Timestamp:
05/05/2023 01:38:58 PM (3 years ago)
Author:
dyonic
Message:

Fix custom variable host

Location:
ryen-wp/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • ryen-wp/trunk/README.txt

    r2908242 r2908566  
    66License: GPL 2.0
    77License URI: http://www.gnu.org/licenses/gpl-2.0.txt
    8 Stable Tag: 3.1.9
     8Stable Tag: 3.1.10
    99
    1010== Description ==
     
    2626
    2727== Changelog ==
     28= 3.1.10 =
     29* Fix custom apiHost variable name
     30
    2831= 3.1.8 =
    2932* Fix forward wp user variable when not initialized
  • ryen-wp/trunk/public/class-ryen-public.php

    r2908232 r2908566  
    9191      $ryen = sanitize_text_field($attributes['ryen']);
    9292    }
    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']);
    9595    }
    9696    if (!$ryen) {
  • ryen-wp/trunk/ryen.php

    r2908232 r2908566  
    44 * Plugin Name:       Ryen WP
    55 * Description:       Convert more with conversational forms
    6  * Version:           3.1.9
     6 * Version:           3.1.10
    77 * Author:            Ryen
    88 * Author URI:        http://ryen.org/
     
    1717}
    1818
    19 define('RYEN_VERSION', '3.1.9');
     19define('RYEN_VERSION', '3.1.10');
    2020
    2121function activate_ryen()
Note: See TracChangeset for help on using the changeset viewer.