CodeIgniter Forums
Could not find language line? - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: Could not find language line? (/showthread.php?tid=57002)



Could not find language line? - El Forum - 02-06-2013

[eluser]koichirose[/eluser]
Hi, my codeigniter log is full of lines like this:
Code:
ERROR - 2013-02-06 05:00:58 --> Could not find the language line "calculate_amount"

Grepping that recursively inside my project directory doesn't return anything language-related:
Code:
$ grep "calculate_amount" ./ -R
./application/controllers/register.php: $this->form_validation->set_rules('amount', 'amount', 'callback_calculate_amount');
./application/controllers/register.php: function calculate_amount($amount)
./application/views/public/v_register.php: <?php //calculate_amount ?>

Hints?
Something related to form validation, perhaps?


Could not find language line? - El Forum - 02-06-2013

[eluser]Harold Villacorte[/eluser]
Have you set an error message in the "calculate amount" function for when the input does not validate?


Could not find language line? - El Forum - 02-07-2013

[eluser]koichirose[/eluser]
That was it, setting an error message solved the problem.

Thank you.