Files
opensourcepos/application/libraries/MY_Form_validation.php
jekkos-t520 d208e6dccb set menubar font sizes to px instead of pt
add item_number duplication check when adding new items
fix barcode on receivings receipt (after completion)
change backup db download format to gz
2015-02-10 10:56:37 +01:00

22 lines
356 B
PHP
Executable File

<?php
class MY_Form_validation extends CI_Form_validation
{
function MY_Form_validation($rules = array())
{
parent::__construct($rules);
}
function get_error_message()
{
return $this->error_string;
}
function get_error_messages()
{
return $this->_error_array;
}
}
?>