🔞 ADULT: Changeset/ - High Quality

Changeset 1921787


Ignore:
Timestamp:
08/08/2018 06:57:23 PM (7 years ago)
Author:
ericwindhamsd
Message:

Release 3.3.13, see readme.txt for the changelog.

Location:
ninja-forms
Files:
2 added
16 edited
1 copied

Legend:

Unmodified
Added
Removed
  • ninja-forms/tags/3.3.13/deprecated/ninja-forms.php

    r1917743 r1921787  
    266266        // Plugin version
    267267        if ( ! defined( 'NF_PLUGIN_VERSION' ) )
    268             define( 'NF_PLUGIN_VERSION', '3.3.12' );
     268            define( 'NF_PLUGIN_VERSION', '3.3.13' );
    269269
    270270        // Plugin Folder Path
  • ninja-forms/tags/3.3.13/includes/Config/Currency.php

    r1745524 r1921787  
    9090        'value' => 'ZAR'
    9191    ),
     92    'INR' => array(
     93        'label' => __( 'Indian Rupee', 'ninja-forms' ),
     94        'value' => 'INR'
     95    ),
    9296));
  • ninja-forms/tags/3.3.13/includes/Fields/ListCountry.php

    r1796491 r1921787  
    8787        ob_start();
    8888        echo "<select name='fields[$id]'>";
     89        echo "<option value=''>- " . __( 'Select Country', 'ninja-forms' ) . " -</option>";
    8990        foreach( Ninja_Forms()->config( 'CountryList' ) as $label => $abbr ){
    9091            $selected = ( $value == $abbr ) ? ' selected' : '';
     
    9899    {
    99100        $options = array();
     101        // Option to have no default country
     102        $options[] = array(
     103            'label' => '- ' . __( 'Select Country', 'ninja-forms' ) . ' -',
     104            'value' => ''
     105