Changeset 3246330
- Timestamp:
- 02/25/2025 10:15:05 AM (13 months ago)
- Location:
- advanced-ads
- Files:
-
- 8 edited
- 1 copied
-
tags/1.56.3 (copied) (copied from advanced-ads/trunk)
-
tags/1.56.3/advanced-ads.php (modified) (2 diffs)
-
tags/1.56.3/includes/admin/class-action-links.php (modified) (3 diffs)
-
tags/1.56.3/languages/advanced-ads.pot (modified) (3 diffs)
-
tags/1.56.3/readme.txt (modified) (2 diffs)
-
trunk/advanced-ads.php (modified) (2 diffs)
-
trunk/includes/admin/class-action-links.php (modified) (3 diffs)
-
trunk/languages/advanced-ads.pot (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
advanced-ads/tags/1.56.3/advanced-ads.php
r3243197 r3246330 13 13 * Plugin URI: https://wpadvancedads.com 14 14 * Description: Manage and optimize your ads in WordPress 15 * Version: 1.56. 215 * Version: 1.56.3 16 16 * Author: Advanced Ads 17 17 * Author URI: https://wpadvancedads.com … … 34 34 35 35 define( 'ADVADS_FILE', __FILE__ ); 36 define( 'ADVADS_VERSION', '1.56. 2' );36 define( 'ADVADS_VERSION', '1.56.3' ); 37 37 38 38 // Load the autoloader. -
advanced-ads/tags/1.56.3/includes/admin/class-action-links.php
r3243197 r3246330 185 185 } 186 186 187 $rollback = filter_input( INPUT_GET, 'rollback', FILTER_VALIDATE_BOOL );187 $rollback = filter_input( INPUT_GET, 'rollback', FILTER_VALIDATE_BOOLEAN ); 188 188 if ( ! $rollback ) { 189 189 return; … … 191 191 192 192 $rollback_notification = defined( 'ADVADS_VERSION' ) 193 /* translators: %s: version number */ 193 194 ? sprintf( esc_html__( 'You have successfully rolled back to Advanced Ads %s', 'advanced-ads' ), ADVADS_VERSION ) 194 195 : esc_html__( 'You have successfully rolled back to a previous version of Advanced Ads.', 'advanced-ads' ); … … 197 198 <div class="notice notice-success is-dismissible"> 198 199 <p> 199 <?php e sc_html_e( $rollback_notification ); ?>200 <?php echo esc_html( $rollback_notification ); ?> 200 201 </p> 201 202 </div> -
advanced-ads/tags/1.56.3/languages/advanced-ads.pot
r3243197 r3246330 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Advanced Ads 1.56. 1\n"5 "Project-Id-Version: Advanced Ads 1.56.2\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/advanced-ads/\n" 7 7 "Last-Translator: Thomas Maier <post@webzunft.de>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-02- 19T11:41:36+00:00\n"12 "POT-Creation-Date: 2025-02-25T10:13:19+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.6.0\n" … … 2760 2760 msgstr "" 2761 2761 2762 #: includes/admin/class-action-links.php:193 2762 #. translators: %s: version number 2763 #: includes/admin/class-action-links.php:194 2763 2764 msgid "You have successfully rolled back to Advanced Ads %s" 2764 2765 msgstr "" 2765 2766 2766 #: includes/admin/class-action-links.php:19 42767 #: includes/admin/class-action-links.php:195 2767 2768 msgid "You have successfully rolled back to a previous version of Advanced Ads." 2768 2769 msgstr "" -
advanced-ads/tags/1.56.3/readme.txt
r3243197 r3246330 5 5 Tested up to: 6.6 6 6 Requires PHP: 7.2 7 Stable tag: 1.56. 27 Stable tag: 1.56.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 357 357 == Changelog == 358 358 359 = 1.56.3 (February 25, 2025) = 360 361 - Fix: prevent an 'undefined constant' error in PHP versions prior to PHP 8 362 359 363 = 1.56.2 (February 19, 2025) = 360 364 -
advanced-ads/trunk/advanced-ads.php
r3243197 r3246330 13 13 * Plugin URI: https://wpadvancedads.com 14 14 * Description: Manage and optimize your ads in WordPress 15 * Version: 1.56. 215 * Version: 1.56.3 16 16 * Author: Advanced Ads 17 17 * Author URI: https://wpadvancedads.com … … 34 34 35 35 define( 'ADVADS_FILE', __FILE__ ); 36 define( 'ADVADS_VERSION', '1.56. 2' );36 define( 'ADVADS_VERSION', '1.56.3' ); 37 37 38 38 // Load the autoloader. -
advanced-ads/trunk/includes/admin/class-action-links.php
r3243197 r3246330 185 185 } 186 186 187 $rollback = filter_input( INPUT_GET, 'rollback', FILTER_VALIDATE_BOOL );187 $rollback = filter_input( INPUT_GET, 'rollback', FILTER_VALIDATE_BOOLEAN ); 188 188 if ( ! $rollback ) { 189 189 return; … … 191 191 192 192 $rollback_notification = defined( 'ADVADS_VERSION' ) 193 /* translators: %s: version number */ 193 194 ? sprintf( esc_html__( 'You have successfully rolled back to Advanced Ads %s', 'advanced-ads' ), ADVADS_VERSION ) 194 195 : esc_html__( 'You have successfully rolled back to a previous version of Advanced Ads.', 'advanced-ads' ); … … 197 198 <div class="notice notice-success is-dismissible"> 198 199 <p> 199 <?php e sc_html_e( $rollback_notification ); ?>200 <?php echo esc_html( $rollback_notification ); ?> 200 201 </p> 201 202 </div> -
advanced-ads/trunk/languages/advanced-ads.pot
r3243197 r3246330 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Advanced Ads 1.56. 1\n"5 "Project-Id-Version: Advanced Ads 1.56.2\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/advanced-ads/\n" 7 7 "Last-Translator: Thomas Maier <post@webzunft.de>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-02- 19T11:41:36+00:00\n"12 "POT-Creation-Date: 2025-02-25T10:13:19+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.6.0\n" … … 2760 2760 msgstr "" 2761 2761 2762 #: includes/admin/class-action-links.php:193 2762 #. translators: %s: version number 2763 #: includes/admin/class-action-links.php:194 2763 2764 msgid "You have successfully rolled back to Advanced Ads %s" 2764 2765 msgstr "" 2765 2766 2766 #: includes/admin/class-action-links.php:19 42767 #: includes/admin/class-action-links.php:195 2767 2768 msgid "You have successfully rolled back to a previous version of Advanced Ads." 2768 2769 msgstr "" -
advanced-ads/trunk/readme.txt
r3243197 r3246330 5 5 Tested up to: 6.6 6 6 Requires PHP: 7.2 7 Stable tag: 1.56. 27 Stable tag: 1.56.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 357 357 == Changelog == 358 358 359 = 1.56.3 (February 25, 2025) = 360 361 - Fix: prevent an 'undefined constant' error in PHP versions prior to PHP 8 362 359 363 = 1.56.2 (February 19, 2025) = 360 364
Note: See TracChangeset
for help on using the changeset viewer.