Changeset 1820914
- Timestamp:
- 02/12/2018 11:50:46 PM (8 years ago)
- Location:
- nm-contact-forms/trunk
- Files:
-
- 2 edited
-
index.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
nm-contact-forms/trunk/index.php
r1677896 r1820914 454 454 455 455 if(!empty($_GET[$field['get']])) $get_value = $this->xss_clean($_GET[$field['get']]); 456 else $get_value = ''; 456 else{ 457 if (!empty($_POST[$field['get']])) 458 $get_value=$this->xss_clean($_POST[$field['get']]); 459 else 460 $get_value = ''; 461 } 457 462 458 463 switch($field['type']){ -
nm-contact-forms/trunk/readme.txt
r1677896 r1820914 1 1 === Plugin Name === 2 Contributors: frankenstein-uk 2 Contributors: frankenstein-uk, bigloltrash 3 3 Donate link: http://nutmedia.co.uk/nm-contact-forms 4 4 Tags: contact form, contact form builder, contact form plugin, contact forms, contact us, feedback form, form, form builder, web form, contacts, contacts shortcode, contact plugin wordpress, easy contact form, simple contact form, form, feedback form … … 137 137 138 138 == Changelog == 139 = 1.2.3 = 140 * GET field will pre-fill if POST variable is set on the page, contributed by 139 141 = 1.2.2 = 140 142 * Minor fixes
Note: See TracChangeset
for help on using the changeset viewer.