Plugin Directory

Changeset 3271785


Ignore:
Timestamp:
04/13/2025 11:52:34 AM (12 months ago)
Author:
palmstrack
Message:

Added stable tag 1.6.1

Location:
subscription-tracker
Files:
43 added
3 edited

Legend:

Unmodified
Added
Removed
  • subscription-tracker/trunk/admin/views/insights-page.php

    r3270755 r3271785  
    1313        $reports_data = array();
    1414    }
    15         $total_subscriptions    = count( $reports_data );
     15    $total_subscriptions    = count( $reports_data );
    1616    $renewals_this_month    = 0;
    1717    $total_costs_this_month = 0.0;
     
    5757}
    5858
     59// Check if the NumberFormatter class exists before creating an instance.
     60// If not, fallback by setting the formatter to false.
    5961if ( ! isset( $formatter ) || ! $formatter ) {
    60     $formatter = new NumberFormatter( $formatted_locale, NumberFormatter::CURRENCY );
     62    if ( class_exists( 'NumberFormatter' ) ) {
     63        $formatter = new NumberFormatter( $formatted_locale, NumberFormatter::CURRENCY );
     64    } else {
     65        $formatter = false;
     66    }
    6167}
    6268
     
    155161    </div>
    156162</div>
     163
  • subscription-tracker/trunk/readme.txt

    r3270755 r3271785  
    44Requires at least: 5.9
    55Tested up to: 6.7
    6 Stable tag: 1.6
     6Stable tag: 1.6.1
    77Requires PHP: 7.2
    88License: GPLv2 or later
  • subscription-tracker/trunk/subscription-tracker.php

    r3270755 r3271785  
    44 * Plugin URI:        https://palmstrack.com
    55 * Description:       Manage and track your WordPress site costs by monitoring your plugin and SaaS subscriptions and renewal dates.
    6  * Version:           1.6
     6 * Version:           1.6.1
    77 * Requires at least: 5.2
    88 * Requires PHP:      7.2
Note: See TracChangeset for help on using the changeset viewer.