Plugin Directory

Changeset 2684543


Ignore:
Timestamp:
02/24/2022 06:28:02 PM (4 years ago)
Author:
addonspress
Message:

2.0.5

Location:
nepali-date-converter
Files:
26 added
3 edited

Legend:

Unmodified
Added
Removed
  • nepali-date-converter/trunk/inc/class/ndc-post-date.php

    r2653102 r2684543  
    536536        function init_ndc_post_date(){
    537537            /*Use both admin and frontend*/
    538             $this->options = apply_filters( 'ndc_post_date_options', get_option('ndc_post_date_options', $this->defaults));
     538            $db_options = get_option('ndc_post_date_options', $this->defaults);
     539            $db_options = array_merge($this->defaults, $db_options);
     540            $this->options = apply_filters( 'ndc_post_date_options', $db_options);
    539541
    540542            /*return if in admin*/
  • nepali-date-converter/trunk/nepali-date-converter.php

    r2672955 r2684543  
    44Plugin URI: https://www.addonspress.com/wordpress-plugins/nepali-date-converter/
    55Description: Convert English to Nepali Date and Vice Versa and Post Date to Nepali Date.
    6 Version: 2.0.4
     6Version: 2.0.5
    77Author: addonspress
    88Author URI: https://www.addonspress.com/
     
    1717}
    1818/*Define Constants for this plugin*/
    19 define( 'NEPALI_DATE_CONVERTER_VERSION', '2.0.4' );
     19define( 'NEPALI_DATE_CONVERTER_VERSION', '2.0.5' );
    2020define( 'NEPALI_DATE_CONVERTER_PATH', plugin_dir_path( __FILE__ ) );
    2121define( 'NEPALI_DATE_CONVERTER_URL', plugin_dir_url( __FILE__ ) );
  • nepali-date-converter/trunk/readme.txt

    r2672955 r2684543  
    55Requires at least: 4.9
    66Tested up to: 5.9
    7 Stable tag: 2.0.4
     7Stable tag: 2.0.5
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    137137== Changelog ==
    138138
     139= 2.0.5 - 2022-02-25 =
     140* Fixed: Post Date Array notice in some cases
     141
    139142= 2.0.4 - 2022-02-04 =
    140143* Updated: WordPress version
Note: See TracChangeset for help on using the changeset viewer.