Changeset 3021262
- Timestamp:
- 01/13/2024 10:50:20 AM (2 years ago)
- Location:
- flatpm-wp/trunk
- Files:
-
- 4 edited
-
assets/admin/css/custom.css (modified) (1 diff)
-
flat_pm.php (modified) (2 diffs)
-
path/functions/flat-filter_content.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
flatpm-wp/trunk/assets/admin/css/custom.css
r3021164 r3021262 398 398 } 399 399 .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} 401 401 #tab-html{padding:.75rem .75rem 0} 402 402 #tab-html .sub_block{background:#fff;margin-bottom:.75rem} -
flatpm-wp/trunk/flat_pm.php
r3021164 r3021262 4 4 Plugin URI: https://mehanoid.pro/flat-pm/ 5 5 Description: 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.1 06 Version: 3.1.11 7 7 Author: Mehanoid.pro 8 8 Author URI: https://mehanoid.pro/ … … 21 21 22 22 define( 'FLATPM_SLUG', dirname( plugin_basename( __FILE__ ) ) ); 23 define( 'FLATPM_VERSION', '?3.1.1 0' );23 define( 'FLATPM_VERSION', '?3.1.11' ); 24 24 define( 'FLATPM_INT_MAX', PHP_INT_MAX - 100 ); 25 25 define( 'FLATPM_URL', plugin_dir_url( __FILE__ ) ); -
flatpm-wp/trunk/path/functions/flat-filter_content.php
r3021164 r3021262 478 478 479 479 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' ){ 481 481 $block_meta['user'][ $key ]['enabled'] = 'true'; 482 482 } 483 483 484 if( $block_meta['user'][ $key ]['enabled'] === 'false' ){484 if( ! isset( $block_meta['user'][ $key ] ) || $block_meta['user'][ $key ]['enabled'] === 'false' ){ 485 485 unset( $block_meta['user'][ $key ] ); 486 486 continue; -
flatpm-wp/trunk/readme.txt
r3021164 r3021262 5 5 * Requires at least: 5.9 6 6 * Tested up to: 6.4.2 7 * Stable tag: 3.1.1 07 * Stable tag: 3.1.11 8 8 * Requires PHP: 5.6 9 9 * License: GPLv3
Note: See TracChangeset
for help on using the changeset viewer.