Plugin Directory

Changeset 2997144


Ignore:
Timestamp:
11/16/2023 02:14:44 PM (2 years ago)
Author:
iubenda
Message:

Tagging version 3.7.8

Location:
iubenda-cookie-law-solution
Files:
147 added
4 edited

Legend:

Unmodified
Added
Removed
  • iubenda-cookie-law-solution/trunk/includes/class-iubenda-settings.php

    r2972333 r2997144  
    12651265        }
    12661266
    1267         // If the API key is not set in $_SERVER or $_ENV, use the predefined constant.
     1267        $iub_api_key = get_option('iubenda_api_key');
     1268        if ( $iub_api_key ) {
     1269            return trim( $iub_api_key );
     1270        }
     1271
     1272        // If the API key is not set in $_SERVER or $_ENV or in DB, use the predefined constant.
    12681273        return self::IUB_QG_API_KEY;
    12691274    }
  • iubenda-cookie-law-solution/trunk/iubenda_cookie_solution.php

    r2993467 r2997144  
    44 * Plugin URI: https://www.iubenda.com
    55 * Description: The iubenda plugin is an <strong>all-in-one</strong>, extremely easy to use 360° compliance solution, with text crafted by actual lawyers, that quickly <strong>scans your site and auto-configures to match your specific setup</strong>.  It supports the GDPR (DSGVO, RGPD), UK-GDPR, ePrivacy, LGPD, USPR, CalOPPA, PECR and more.
    6  * Version: 3.7.7
     6 * Version: 3.7.8
    77 * Author: iubenda
    88 * Author URI: https://www.iubenda.com
     
    4646 *
    4747 * @class   iubenda
    48  * @version 3.7.7
     48 * @version 3.7.8
    4949 */
    5050class iubenda {
     
    138138     * @var string
    139139     */
    140     public $version = '3.7.7';
     140    public $version = '3.7.8';
    141141
    142142    /**
  • iubenda-cookie-law-solution/trunk/readme.txt

    r2993467 r2997144  
    66Requires PHP: 7.0.0
    77Tested up to: 6.4
    8 Stable tag: 3.7.7
     8Stable tag: 3.7.8
    99License: MIT License
    1010License URI: http://opensource.org/licenses/MIT
     
    268268== Changelog ==
    269269
     270= 3.7.8 =
     271* Fix ConS saving preference issue
     272
    270273= 3.7.7 =
    271274* Support WordPress 6.4
     
    835838== Upgrade Notice ==
    836839
    837 = 3.7.7 =
    838 * Support WordPress 6.4
     840= 3.7.8 =
     841* Fix ConS saving preference issue
  • iubenda-cookie-law-solution/trunk/views/cons-single-form.php

    r2907966 r2997144  
    159159                                        <select class="preferences-fields-select select-' . esc_html( $field_name ) . '" name="preferences[' . esc_html( $index ) . '][value]">';
    160160                if ( ! empty( $form->form_fields ) ) {
    161                     foreach ( $form->form_fields as $index => $form_field ) {
     161                    foreach ( $form->form_fields as $form_index => $form_field ) {
    162162                        // get field data.
    163                         $form_field_value    = is_array( $form_field ) ? $index : $form_field;
     163                        $form_field_value    = is_array( $form_field ) ? $form_index : $form_field;
    164164                        $form_field_label    = is_array( $form_field ) ? $form_field['label'] . ' (' . $form_field['type'] . ')' : $form_field;
    165                         $form_field_selected = is_array( $form_field ) ? $index : $form_field;
     165                        $form_field_selected = is_array( $form_field ) ? $form_index : $form_field;
    166166
    167167                        echo '<option value="' . esc_html( $form_field_value ) . '" ' . selected( $selected, $form_field_selected, false ) . '>' . esc_html( $form_field_label ) . '</option>';
Note: See TracChangeset for help on using the changeset viewer.