Changeset 582582
- Timestamp:
- 08/07/2012 09:37:34 AM (14 years ago)
- Location:
- tailored-tools
- Files:
-
- 24 added
- 3 edited
-
tags/1.3.6 (added)
-
tags/1.3.6/form.contact.php (added)
-
tags/1.3.6/form.sample.php (added)
-
tags/1.3.6/lib (added)
-
tags/1.3.6/lib/class.akismet.php (added)
-
tags/1.3.6/lib/class.ayah.php (added)
-
tags/1.3.6/lib/class.forms.php (added)
-
tags/1.3.6/lib/class.recaptcha.php (added)
-
tags/1.3.6/lib/countries.php (added)
-
tags/1.3.6/lib/json.php (added)
-
tags/1.3.6/lib/lib.ayah.php (added)
-
tags/1.3.6/lib/recaptchalib.php (added)
-
tags/1.3.6/lib/tinymce.php (added)
-
tags/1.3.6/readme.txt (added)
-
tags/1.3.6/resource (added)
-
tags/1.3.6/resource/admin.css (added)
-
tags/1.3.6/resource/custom.css (added)
-
tags/1.3.6/resource/exclaim.gif (added)
-
tags/1.3.6/resource/icons.png (added)
-
tags/1.3.6/resource/loader.js (added)
-
tags/1.3.6/resource/mce-icon.gif (added)
-
tags/1.3.6/resource/tinymce.js.php (added)
-
tags/1.3.6/shortcodes.php (added)
-
tags/1.3.6/tools.php (added)
-
trunk/lib/class.forms.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/tools.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tailored-tools/trunk/lib/class.forms.php
r580209 r582582 202 202 203 203 // Prepare email headers - how do we know which? 204 $headers = apply_filters('ttools_form_filter_email_headers', false, &$this);204 $headers = apply_filters('ttools_form_filter_email_headers', false, $this); 205 205 if (!empty($this->opts['email']['bcc'])) $headers[] = 'BCC: '.$this->opts['email']['bcc']; 206 206 … … 228 228 // Fields to ignore 229 229 $ignore_fields = array( $this->submit_key, 'recaptcha_challenge_field', 'recaptcha_response_field' ); 230 $ignore_fields = apply_filters('ttools_form_filter_validate', $ignore_fields, &$this);230 $ignore_fields = apply_filters('ttools_form_filter_validate', $ignore_fields, $this); 231 231 // Prepare data from $_POST 232 232 $formdata = array(); … … 322 322 $enctype = (!$this->form_enctype) ? '' : ' enctype="'.$this->form_enctype.'"'; 323 323 // Draw form 324 do_action('ttools_form_before_form', &$this);324 do_action('ttools_form_before_form', $this); 325 325 echo '<form action="'.$this->form_action.'" method="post" class="tws '.$this->form_class.'"'.$enctype.'>'."\n"; 326 do_action('ttools_form_before_questions', &$this);326 do_action('ttools_form_before_questions', $this); 327 327 foreach ($this->questions as $key => $q) { 328 328 … … 334 334 $this->draw_element($key, $q); 335 335 } 336 do_action('ttools_form_before_submit_button', &$this);336 do_action('ttools_form_before_submit_button', $this); 337 337 // Submit button 338 338 echo '<input type="hidden" name="'.$this->submit_key.'" value="" />'."\n"; 339 339 echo '<p class="submit"><input type="submit" name="'.$this->submit_key.'" value="'.$this->submit_label.'" /></p>'."\n"; 340 do_action('ttools_form_after_submit_button', &$this);340 do_action('ttools_form_after_submit_button', $this); 341 341 echo '</form>'."\n"; 342 do_action('ttools_form_after_form', &$this);342 do_action('ttools_form_after_form', $this); 343 343 } 344 344 -
tailored-tools/trunk/readme.txt
r580209 r582582 4 4 Requires at least: 3.0 5 5 Tested up to: 3.4.1 6 Stable tag: 1.3. 56 Stable tag: 1.3.6 7 7 8 8 Contains some helper classes to help you build custom forms. … … 51 51 == Changelog == 52 52 53 = 1.3.6 = 54 * Fix a PHP depreciation issue 55 53 56 = 1.3.5 = 54 57 * Fix issue with ui_tabs - JS and shortcode -
tailored-tools/trunk/tools.php
r580209 r582582 3 3 Plugin Name: Tailored Tools 4 4 Description: Adds some functionality to WordPress that you'll need. 5 Version: 1.3. 55 Version: 1.3.6 6 6 Author: Tailored Web Services 7 7 Author URI: http://www.tailored.com.au
Note: See TracChangeset
for help on using the changeset viewer.