Changeset 695340
- Timestamp:
- 04/10/2013 03:47:09 PM (13 years ago)
- Location:
- contact-form-7-datepicker/trunk
- Files:
-
- 3 edited
-
contact-form-7-datepicker.php (modified) (1 diff)
-
date-module.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
contact-form-7-datepicker/trunk/contact-form-7-datepicker.php
r694715 r695340 5 5 Description: Easily add a date field using jQuery UI's datepicker to your CF7 forms. This plugin depends on Contact Form 7. 6 6 Author: Aurel Canciu 7 Version: 2.3. 17 Version: 2.3.2 8 8 Author URI: https://github.com/relu/ 9 9 */ -
contact-form-7-datepicker/trunk/date-module.php
r694714 r695340 78 78 } elseif (preg_match('%^change-year$%i', $option, $matches)) { 79 79 $dpOptions['changeYear'] = true; 80 } elseif (preg_match('%^year-range:([-+ \d]+)[:-]?([-+\d]+)?$%', $option, $matches)) {81 $dpOptions['yearRange'] = $matches[1];80 } elseif (preg_match('%^year-range:([-+]?\d+)[:-]?([-+]?\d+)?$%', $option, $matches)) { 81 $dpOptions['yearRange'] = isset($matches[2]) ? "$matches[1]:$matches[2]" : $matches[1]; 82 82 } elseif (preg_match('%^months:(\d+)$%', $option, $matches)) { 83 83 $dpOptions['numberOfMonths'] = (int) $matches[1]; -
contact-form-7-datepicker/trunk/readme.txt
r694716 r695340 4 4 Requires at least: 2.9 5 5 Tested up to: 3.5.1 6 Stable tag: 2.3. 16 Stable tag: 2.3.2 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 34 34 35 35 == Changelog == 36 37 = 2.3.2 = 38 * Fix year-range issues 36 39 37 40 = 2.3.1 =
Note: See TracChangeset
for help on using the changeset viewer.