Changeset 3457807
- Timestamp:
- 02/10/2026 09:27:13 AM (7 weeks ago)
- Location:
- the-moneytizer/trunk
- Files:
-
- 7 edited
-
core/core_init_options.php (modified) (1 diff)
-
core/core_util.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
tab/inc/inc_generic_tags.php (modified) (1 diff)
-
tab/inc/inc_off_tags.php (modified) (1 diff)
-
tab/tab_menu_settings.php (modified) (1 diff)
-
themoneytizer.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
the-moneytizer/trunk/core/core_init_options.php
r3450605 r3457807 53 53 update_option('themoneytizer_setting_init', true); 54 54 update_option('themoneytizer_data_lazy', json_encode(array())); 55 update_option('themoneytizer_plugin_version', '10.0. 8');55 update_option('themoneytizer_plugin_version', '10.0.9'); 56 56 update_option('themoneytizer_user_language', 'en'); 57 57 update_option( 'themoneytizer_user_notifications', json_encode(array())); -
the-moneytizer/trunk/core/core_util.php
r3450605 r3457807 68 68 69 69 // Const for current version 70 define('THEMONEYTIZER_PLUGIN_VERSION', '10.0. 8');70 define('THEMONEYTIZER_PLUGIN_VERSION', '10.0.9'); 71 71 update_option('themoneytizer_plugin_version', THEMONEYTIZER_PLUGIN_VERSION); 72 72 -
the-moneytizer/trunk/readme.txt
r3450605 r3457807 5 5 Requires PHP: 7.0 6 6 Tested up to: 6.9 7 Stable tag: 10.0. 87 Stable tag: 10.0.9 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 39 39 40 40 == Changelog == 41 42 = 10.0.9 (30/01/2025)= 43 * Fixed lazy loading configuration JS error and hardened escaping in lazy loading UI 41 44 42 45 = 10.0.8 (30/01/2025)= -
the-moneytizer/trunk/tab/inc/inc_generic_tags.php
r3450605 r3457807 98 98 onClick="lazySetup( 99 99 <?php echo absint( $format->ad_id ); ?>, 100 <?php echo wp_json_encode( $format->form_name ); ?>100 '<?php echo esc_js( $format->form_name ); ?>' 101 101 )"> 102 102 <?php esc_html_e( 'Configurer', 'themoneytizer' ); ?> -
the-moneytizer/trunk/tab/inc/inc_off_tags.php
r3450605 r3457807 82 82 onClick="lazySetup( 83 83 <?php echo absint( $format->ad_id ); ?>, 84 <?php echo wp_json_encode( $format->form_name ); ?>84 '<?php echo esc_js( $format->form_name ); ?>' 85 85 )"> 86 86 <?php echo esc_html(__('Configurer', 'themoneytizer')); ?> -
the-moneytizer/trunk/tab/tab_menu_settings.php
r3450605 r3457807 146 146 <i class="bi bi-info-circle" style="color: #6c757d; margin-right: 0.5rem;"></i> 147 147 <strong><?php _e('Version actuelle du plugin','themoneytizer');?>:</strong> 148 <span style="color: #db0436; font-weight: 600;"><?php echo esc_html( defined( 'THEMONEYTIZER_PLUGIN_VERSION' ) ? THEMONEYTIZER_PLUGIN_VERSION : get_option( 'themoneytizer_plugin_version', '10.0. 8' ) ); ?></span>148 <span style="color: #db0436; font-weight: 600;"><?php echo esc_html( defined( 'THEMONEYTIZER_PLUGIN_VERSION' ) ? THEMONEYTIZER_PLUGIN_VERSION : get_option( 'themoneytizer_plugin_version', '10.0.9' ) ); ?></span> 149 149 </p> 150 150 </div> -
the-moneytizer/trunk/themoneytizer.php
r3450605 r3457807 4 4 Plugin URI: http://www.themoneytizer.com/ 5 5 Description: Plugin of the ad network The Moneytizer that facilitates the integration of your ad tags 6 Version: 10.0. 86 Version: 10.0.9 7 7 Author: The Moneytizer 8 8 Author URI: https://www.themoneytizer.com/
Note: See TracChangeset
for help on using the changeset viewer.