- fixed conditional logic for profile form fields on submit;

- small notices fixes;
This commit is contained in:
nikitozzzzzzz
2017-09-01 16:39:01 +03:00
parent 9d6f6231bd
commit 1d246e0046
6 changed files with 103 additions and 62 deletions
+1 -1
View File
@@ -121,7 +121,7 @@ if ( ! class_exists( 'Form' ) ) {
* @return boolean
*/
function has_error( $key ) {
if ( isset($this->errors[$key]) )
if ( isset( $this->errors[$key] ) )
return true;
return false;
}