Welcome Guest, Not a member yet? Register   Sign In
Cannot get my custom validation to work,
#3

[eluser]darrentaytay[/eluser]
In MY_Form_Validation, you don't have access to the CI Super Object ($this).

If add this at the top:

Code:
$CI =& get_instance();

And then instead of

Code:
$this->form_validation->set_message('filterBadWords', 'You are not allowed to use swear words');

Use this

Code:
$CI->form_validation->set_message('filterBadWords', 'You are not allowed to use swear words');


Messages In This Thread
Cannot get my custom validation to work, - by El Forum - 05-09-2011, 03:31 AM
Cannot get my custom validation to work, - by El Forum - 05-09-2011, 04:20 AM
Cannot get my custom validation to work, - by El Forum - 05-09-2011, 04:32 AM
Cannot get my custom validation to work, - by El Forum - 05-09-2011, 05:15 AM
Cannot get my custom validation to work, - by El Forum - 05-09-2011, 02:23 PM



Theme © iAndrew 2016 - Forum software by © MyBB