Plugin Directory

Changeset 3392315


Ignore:
Timestamp:
11/09/2025 05:52:21 AM (5 months ago)
Author:
davidvongries
Message:

updated to 3.8.12

Location:
ultimate-dashboard
Files:
482 added
4 edited

Legend:

Unmodified
Added
Removed
  • ultimate-dashboard/trunk/class-setup.php

    r3385375 r3392315  
    483483
    484484        // Intentional: using manually written string instead of gmdate( 'Y' ).
    485         $this_year = '2024';
     485        $this_year = '2025';
    486486        $last_year = $this_year - 1;
    487         $start     = strtotime( 'november 22nd, ' . $this_year );
    488         $end       = strtotime( 'december 2nd, ' . $this_year );
     487        $start     = strtotime( 'november 24th, ' . $this_year );
     488        $end       = strtotime( 'december 1st, ' . $this_year );
    489489        $now       = time();
    490490
     
    522522                    </h2>
    523523                    <p>
    524                         <?php esc_html_e( 'Save big & upgrade to <strong>Ultimate Dashboard PRO</strong>, today!', 'ultimate-dashboard' ); ?>
     524                        <?php echo wp_kses_post( __( 'Save big & upgrade to <strong>Ultimate Dashboard PRO</strong>, today!', 'ultimate-dashboard' ) ); ?>
    525525                    </p>
    526526                    <p>
     
    550550        }
    551551
    552         update_option( 'udb_bfcm_notice_dismissed_2024', 1 );
     552        update_option( 'udb_bfcm_notice_dismissed_2025', 1 );
    553553        wp_send_json_success( 'Review notice has been dismissed.' );
    554554
  • ultimate-dashboard/trunk/modules/onboarding-wizard/templates/onboarding-wizard-template.php

    r3385375 r3392315  
    393393
    394394                            <p>
    395                                 <?php esc_html_e( 'Unlock all features! Subscribe to our newsletter and claim your <strong>exclusive discount</strong> on Ultimate Dashboard PRO.', 'ultimate-dashboard' ); ?>
     395                                <?php echo wp_kses_post( __( 'Unlock all features! Subscribe to our newsletter and claim your <strong>exclusive discount</strong> on Ultimate Dashboard PRO.', 'ultimate-dashboard' ) ); ?>
    396396                            </p>
    397397                        </header>
     
    411411                            <div class="udb-form-row udb-onboarding-wizard-skip-discount">
    412412                                <a href="">
    413                                     <?php esc_html_e( 'No, I don\'t want any Discount :/', 'ultimate-dashboard' ); ?>
     413                                    <?php esc_html_e( 'No, I don\'t want any Discount :(', 'ultimate-dashboard' ); ?>
    414414                                </a>
    415415                            </div>
     
    466466
    467467                <div class="udb-discount-notif for-discount is-hidden">
    468                     <?php esc_html_e( 'Don\'t miss out.<br> <strong>This discount won\'t come back!</strong>', 'ultimate-dashboard' ); ?>
     468                    <?php echo wp_kses_post( __( 'Don\'t miss out.<br> <strong>This discount won\'t come back!</strong>', 'ultimate-dashboard' ) ); ?>
    469469                </div>
    470470
  • ultimate-dashboard/trunk/readme.txt

    r3387151 r3392315  
    55Tested up to: 6.8
    66Requires PHP: 5.6
    7 Stable tag: 3.8.11
     7Stable tag: 3.8.12
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    104104
    105105== Changelog ==
     106= 3.8.12 | November 08, 2025 =
     107* Update BFCM deal details
    106108= 3.8.11 | October 30, 2025 =
    107109* Fixed: Backwards compatibility with Ultimate Dashboard PRO
  • ultimate-dashboard/trunk/ultimate-dashboard.php

    r3387151 r3392315  
    44 * Plugin URI: https://ultimatedashboard.io/
    55 * Description: Create a custom Dashboard and give the WordPress admin area a more meaningful use.
    6  * Version: 3.8.11
     6 * Version: 3.8.12
    77 * Author: David Vongries
    88 * Author URI: https://davidvongries.com/
     
    1919define( 'ULTIMATE_DASHBOARD_PLUGIN_DIR', rtrim( plugin_dir_path( __FILE__ ), '/' ) );
    2020define( 'ULTIMATE_DASHBOARD_PLUGIN_URL', rtrim( plugin_dir_url( __FILE__ ), '/' ) );
    21 define( 'ULTIMATE_DASHBOARD_PLUGIN_VERSION', '3.8.11' );
     21define( 'ULTIMATE_DASHBOARD_PLUGIN_VERSION', '3.8.12' );
    2222define( 'ULTIMATE_DASHBOARD_PLUGIN_FILE', plugin_basename( __FILE__ ) );
    2323
Note: See TracChangeset for help on using the changeset viewer.