Plugin Directory

Changeset 3438190


Ignore:
Timestamp:
01/12/2026 10:39:48 PM (3 months ago)
Author:
ivanpetermann
Message:

tagging version 1.12.3

Location:
masks-form-fields
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • masks-form-fields/tags/1.12.3/masks-form-fields.php

    r3430208 r3438190  
    11<?php
    2 /*
     2/**
    33 * Plugin Name: Masks Form Fields
    4  * Version: 1.12.2
     4 * Version: 1.12.3
    55 * Plugin URI: https://ivanpetermann.com/masks-form-fields/
    66 * Description: A plugin to add masks in the form’s fields.
    77 * Author: Ivan Petermann
    88 * Author URI: https://ivanpetermann.com
     9 * License: GPLv2 or later
     10 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
    911 * Requires at least: 4.5
    1012 * Tested up to: 6.9
     
    5153    load_plugin_textdomain( 'masks-form-fields', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
    5254}
    53 add_action( 'init', 'mff_load_textdomain' );
     55add_action( 'plugins_loaded', 'mff_load_textdomain' );
    5456
    5557add_action( 'wp_enqueue_scripts', 'mff_do_enqueue_scripts' );
  • masks-form-fields/tags/1.12.3/readme.txt

    r3406914 r3438190  
    66Tested up to: 6.9
    77Requires PHP: 5.6
    8 Stable tag: 1.12.2
     8Stable tag: 1.12.3
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7979== Changelog ==
    8080
     81= 1.12.3 =
     82* Fix plugin header license and domain path.
     83* Tested in WordPress 6.9
     84
    8185= 1.12.2 =
    8286* Add the clearIfNotMatch option to the Brazilian masks: CEP, CPF, CNPJ, and phone number.
     
    138142== Upgrade Notice ==
    139143
    140 = 1.12.2 =
    141 * Add the clearIfNotMatch option to the Brazilian masks: CEP, CPF, CNPJ, and phone number.
    142 * Tested in WordPress 6.8
     144= 1.12.3 =
     145* Fix plugin header license and domain path.
     146* Tested in WordPress 6.9
    143147
    144148== Credits ==
  • masks-form-fields/trunk/masks-form-fields.php

    r3430208 r3438190  
    11<?php
    2 /*
     2/**
    33 * Plugin Name: Masks Form Fields
    4  * Version: 1.12.2
     4 * Version: 1.12.3
    55 * Plugin URI: https://ivanpetermann.com/masks-form-fields/
    66 * Description: A plugin to add masks in the form’s fields.
    77 * Author: Ivan Petermann
    88 * Author URI: https://ivanpetermann.com
     9 * License: GPLv2 or later
     10 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
    911 * Requires at least: 4.5
    1012 * Tested up to: 6.9
     
    5153    load_plugin_textdomain( 'masks-form-fields', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
    5254}
    53 add_action( 'init', 'mff_load_textdomain' );
     55add_action( 'plugins_loaded', 'mff_load_textdomain' );
    5456
    5557add_action( 'wp_enqueue_scripts', 'mff_do_enqueue_scripts' );
  • masks-form-fields/trunk/readme.txt

    r3406914 r3438190  
    66Tested up to: 6.9
    77Requires PHP: 5.6
    8 Stable tag: 1.12.2
     8Stable tag: 1.12.3
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7979== Changelog ==
    8080
     81= 1.12.3 =
     82* Fix plugin header license and domain path.
     83* Tested in WordPress 6.9
     84
    8185= 1.12.2 =
    8286* Add the clearIfNotMatch option to the Brazilian masks: CEP, CPF, CNPJ, and phone number.
     
    138142== Upgrade Notice ==
    139143
    140 = 1.12.2 =
    141 * Add the clearIfNotMatch option to the Brazilian masks: CEP, CPF, CNPJ, and phone number.
    142 * Tested in WordPress 6.8
     144= 1.12.3 =
     145* Fix plugin header license and domain path.
     146* Tested in WordPress 6.9
    143147
    144148== Credits ==
Note: See TracChangeset for help on using the changeset viewer.