Changeset 8402
- Timestamp:
- 03/07/2019 08:43:50 PM (6 years ago)
- Location:
- sites/trunk/jobs.wordpress.net/public_html/wp-content/plugins/jobswp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/jobs.wordpress.net/public_html/wp-content/plugins/jobswp/jobswp-captcha.php
r8231 r8402 19 19 */ 20 20 public static function init() { 21 add_filter( 'jobsw b_save_job_errors', array( __CLASS__, 'check_captcha' ) );21 add_filter( 'jobswp_save_job_errors', array( __CLASS__, 'check_captcha' ) ); 22 22 add_filter( 'jobswp_remove_job_errors', array( __CLASS__, 'check_captcha' ) ); 23 23 add_action( 'jobswp_post_job_form', array( __CLASS__, 'recaptcha_field' ) ); -
sites/trunk/jobs.wordpress.net/public_html/wp-content/plugins/jobswp/jobswp.php
r8231 r8402 703 703 } 704 704 705 $has_errors = apply_filters( 'jobsw b_save_job_errors', $has_errors );705 $has_errors = apply_filters( 'jobswp_save_job_errors', $has_errors ); 706 706 if ( $has_errors ) 707 707 $_POST['errors'] = $has_errors;
Note: See TracChangeset
for help on using the changeset viewer.