Bug fix in DB IO for setting _db_error public
_db_error method was private, but was called in DB.Array.IO, so it had to be set public again. removed debug message from Form Generate class
This commit is contained in:
@@ -523,7 +523,8 @@
|
||||
// msg -> optional message
|
||||
// RETURN none
|
||||
// DESC if error_id set, writes long error string into error_msg
|
||||
private function _db_error($cursor = '', $msg = '')
|
||||
// MARK: needed to make public so it can be called from DB.Array.IO too
|
||||
public function _db_error($cursor = '', $msg = '')
|
||||
{
|
||||
$where_called = $this->get_caller_method();
|
||||
if ($cursor)
|
||||
|
||||
Reference in New Issue
Block a user