Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Match MY_Form_validation constructor call signature with parent class #35

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Match constructor signature with parent class
Fix constructor arguments to be compatible with the original `CI_Form_validation` constructor and pass on any arguments given.

I won't pretend to the know the reason now, but if you don't do this, then the validation rules you set in a global config file as described in https://ellislab.com/codeIgniter/user-guide/libraries/form_validation.html aren't used.
  • Loading branch information
jeteon committed Feb 28, 2015
commit a7c8016acf3a366c2cc50c56ef5321167d022e30
6 changes: 3 additions & 3 deletions library_files/application/libraries/MY_Form_validation.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

class MY_Form_validation extends CI_Form_validation
{
public function __construct()
public function __construct($rules = array())
{
parent::__construct();
parent::__construct($rules);
}

// Check identity is available
Expand Down Expand Up @@ -98,4 +98,4 @@ protected function validate_math_captcha($input)
}

/* End of file MY_Form_validation.php */
/* Location: ./application/library/MY_Form_validation.php */
/* Location: ./application/library/MY_Form_validation.php */