Plugin Directory

Changeset 3021262


Ignore:
Timestamp:
01/13/2024 10:50:20 AM (2 years ago)
Author:
flatboy
Message:

v3.1.11

Location:
flatpm-wp/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • flatpm-wp/trunk/assets/admin/css/custom.css

    r3021164 r3021262  
    398398}
    399399.wp-core-ui .button,.wp-core-ui .button.button-large,.wp-core-ui .button.button-small,a.preview,input#publish,input#save-post{padding:0 8px;line-height:2.18181818;font-size:11px;vertical-align:middle;min-height:26px;margin-bottom:0;height:32.4px}
    400 #tab-html .wp-media-buttons .insert-media{opacity:0;pointer-events:none}
     400#tab-html .wp-media-buttons *{opacity:0!important;pointer-events:none!important}
    401401#tab-html{padding:.75rem .75rem 0}
    402402#tab-html .sub_block{background:#fff;margin-bottom:.75rem}
  • flatpm-wp/trunk/flat_pm.php

    r3021164 r3021262  
    44Plugin URI: https://mehanoid.pro/flat-pm/
    55Description: Plugin for displaying ads and interactive content. Popups, GEO, referer, browser, OS, ISP, UTM, A/B tests and more <a href="https://t.me/joinchat/+peZspodMlelhZjIy">Our telegram channel</a>
    6 Version: 3.1.10
     6Version: 3.1.11
    77Author: Mehanoid.pro
    88Author URI: https://mehanoid.pro/
     
    2121
    2222define( 'FLATPM_SLUG', dirname( plugin_basename( __FILE__ ) ) );
    23 define( 'FLATPM_VERSION', '?3.1.10' );
     23define( 'FLATPM_VERSION', '?3.1.11' );
    2424define( 'FLATPM_INT_MAX', PHP_INT_MAX - 100 );
    2525define( 'FLATPM_URL', plugin_dir_url( __FILE__ ) );
  • flatpm-wp/trunk/path/functions/flat-filter_content.php

    r3021164 r3021262  
    478478
    479479            foreach( array( 'browser', 'os', 'color-scheme', 'role' ) as $key ){
    480                 if( $filtered && $folder_meta['user'][ $key ]['enabled'] === 'true' ){
     480                if( $filtered && isset( $folder_meta['user'][ $key ] ) && $folder_meta['user'][ $key ]['enabled'] === 'true' ){
    481481                    $block_meta['user'][ $key ]['enabled'] = 'true';
    482482                }
    483483
    484                 if( $block_meta['user'][ $key ]['enabled'] === 'false' ){
     484                if( ! isset( $block_meta['user'][ $key ] ) || $block_meta['user'][ $key ]['enabled'] === 'false' ){
    485485                    unset( $block_meta['user'][ $key ] );
    486486                    continue;
  • flatpm-wp/trunk/readme.txt

    r3021164 r3021262  
    55* Requires at least: 5.9
    66* Tested up to: 6.4.2
    7 * Stable tag: 3.1.10
     7* Stable tag: 3.1.11
    88* Requires PHP: 5.6
    99* License: GPLv3
Note: See TracChangeset for help on using the changeset viewer.