Plugin Directory

Changeset 3352435


Ignore:
Timestamp:
08/29/2025 06:54:36 AM (7 months ago)
Author:
formulaagile
Message:

release 3.1.12

Location:
myagileprivacy/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • myagileprivacy/trunk/frontend/my-agile-privacy-frontend.php

    r3324742 r3352435  
    14561456                                    }
    14571457
    1458                                     $elem['post_title'] = $_map_translations_decoded[ $language_key ]['name'];
    1459                                     $elem['post_content'] = $_map_translations_decoded[ $language_key ]['text'];
     1458                                    if( isset( $_map_translations_decoded[ $language_key ] ) )
     1459                                    {
     1460                                        $elem['post_title'] = $_map_translations_decoded[ $language_key ]['name'];
     1461                                        $elem['post_content'] = $_map_translations_decoded[ $language_key ]['text'];
     1462                                    }
     1463                                    else
     1464                                    {
     1465                                        $elem['post_title'] = '';
     1466                                        $elem['post_content'] = '';
     1467                                    }
    14601468                                }
    14611469                            }
  • myagileprivacy/trunk/frontend/views/my-agile-privacy-notify.php

    r3329410 r3352435  
    8080$map_heading_style = 'background-color:'.$the_settings['heading_background_color'].'; color: '.$the_settings['heading_text_color'].';';
    8181
    82 $map_close_button_style = ( $the_settings['title_is_on'] == true ) ? 'color: '.$the_settings['heading_text_color'].';' : 'color: '.$the_settings['text'].';';
     82$map_close_button_style = ( $the_settings['title_is_on'] == true ) ? 'color: '.$the_settings['heading_text_color'].'!important;' : 'color: '.$the_settings['text'].'!important;';
    8383
    8484//graphic settings
  • myagileprivacy/trunk/my-agile-privacy.php

    r3329410 r3352435  
    66 * Plugin URI:        https://www.myagileprivacy.com/
    77 * Description:       The only GDPR solution for WordPress that you can truly trust.
    8  * Version:           3.1.11
     8 * Version:           3.1.12
    99 * Requires at least: 4.4.0
    1010 * Requires PHP:      5.6
     
    1717 */
    1818
    19 define( 'MAP_PLUGIN_VERSION', '3.1.11' );
     19define( 'MAP_PLUGIN_VERSION', '3.1.12' );
    2020define( 'MAP_PLUGIN_NAME', 'my-agile-privacy' );
    2121define( 'MAP_PLUGIN_SLUG', 'myagileprivacy' );
  • myagileprivacy/trunk/readme.txt

    r3329410 r3352435  
    55Requires at least: 4.4.0
    66Tested up to: 6.8
    7 Stable tag: 3.1.11
     7Stable tag: 3.1.12
    88Requires PHP: 5.6
    99License: GPLv3
     
    100100
    101101== Changelog ==
     102
     103= 3.1.12
     104* Frontend fix
    102105
    103106= 3.1.11
Note: See TracChangeset for help on using the changeset viewer.