Changeset 3438190
- Timestamp:
- 01/12/2026 10:39:48 PM (3 months ago)
- Location:
- masks-form-fields
- Files:
-
- 4 edited
- 1 copied
-
tags/1.12.3 (copied) (copied from masks-form-fields/trunk)
-
tags/1.12.3/masks-form-fields.php (modified) (2 diffs)
-
tags/1.12.3/readme.txt (modified) (3 diffs)
-
trunk/masks-form-fields.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
masks-form-fields/tags/1.12.3/masks-form-fields.php
r3430208 r3438190 1 1 <?php 2 /* 2 /** 3 3 * Plugin Name: Masks Form Fields 4 * Version: 1.12. 24 * Version: 1.12.3 5 5 * Plugin URI: https://ivanpetermann.com/masks-form-fields/ 6 6 * Description: A plugin to add masks in the form’s fields. 7 7 * Author: Ivan Petermann 8 8 * Author URI: https://ivanpetermann.com 9 * License: GPLv2 or later 10 * License URI: https://www.gnu.org/licenses/gpl-2.0.html 9 11 * Requires at least: 4.5 10 12 * Tested up to: 6.9 … … 51 53 load_plugin_textdomain( 'masks-form-fields', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' ); 52 54 } 53 add_action( ' init', 'mff_load_textdomain' );55 add_action( 'plugins_loaded', 'mff_load_textdomain' ); 54 56 55 57 add_action( 'wp_enqueue_scripts', 'mff_do_enqueue_scripts' ); -
masks-form-fields/tags/1.12.3/readme.txt
r3406914 r3438190 6 6 Tested up to: 6.9 7 7 Requires PHP: 5.6 8 Stable tag: 1.12. 28 Stable tag: 1.12.3 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 79 79 == Changelog == 80 80 81 = 1.12.3 = 82 * Fix plugin header license and domain path. 83 * Tested in WordPress 6.9 84 81 85 = 1.12.2 = 82 86 * Add the clearIfNotMatch option to the Brazilian masks: CEP, CPF, CNPJ, and phone number. … … 138 142 == Upgrade Notice == 139 143 140 = 1.12. 2=141 * Add the clearIfNotMatch option to the Brazilian masks: CEP, CPF, CNPJ, and phone number.142 * Tested in WordPress 6. 8144 = 1.12.3 = 145 * Fix plugin header license and domain path. 146 * Tested in WordPress 6.9 143 147 144 148 == Credits == -
masks-form-fields/trunk/masks-form-fields.php
r3430208 r3438190 1 1 <?php 2 /* 2 /** 3 3 * Plugin Name: Masks Form Fields 4 * Version: 1.12. 24 * Version: 1.12.3 5 5 * Plugin URI: https://ivanpetermann.com/masks-form-fields/ 6 6 * Description: A plugin to add masks in the form’s fields. 7 7 * Author: Ivan Petermann 8 8 * Author URI: https://ivanpetermann.com 9 * License: GPLv2 or later 10 * License URI: https://www.gnu.org/licenses/gpl-2.0.html 9 11 * Requires at least: 4.5 10 12 * Tested up to: 6.9 … … 51 53 load_plugin_textdomain( 'masks-form-fields', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' ); 52 54 } 53 add_action( ' init', 'mff_load_textdomain' );55 add_action( 'plugins_loaded', 'mff_load_textdomain' ); 54 56 55 57 add_action( 'wp_enqueue_scripts', 'mff_do_enqueue_scripts' ); -
masks-form-fields/trunk/readme.txt
r3406914 r3438190 6 6 Tested up to: 6.9 7 7 Requires PHP: 5.6 8 Stable tag: 1.12. 28 Stable tag: 1.12.3 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 79 79 == Changelog == 80 80 81 = 1.12.3 = 82 * Fix plugin header license and domain path. 83 * Tested in WordPress 6.9 84 81 85 = 1.12.2 = 82 86 * Add the clearIfNotMatch option to the Brazilian masks: CEP, CPF, CNPJ, and phone number. … … 138 142 == Upgrade Notice == 139 143 140 = 1.12. 2=141 * Add the clearIfNotMatch option to the Brazilian masks: CEP, CPF, CNPJ, and phone number.142 * Tested in WordPress 6. 8144 = 1.12.3 = 145 * Fix plugin header license and domain path. 146 * Tested in WordPress 6.9 143 147 144 148 == Credits ==
Note: See TracChangeset
for help on using the changeset viewer.