diff options
author | Gabriel Caruso <carusogabriel34@gmail.com> | 2017-12-20 20:53:55 +0100 |
---|---|---|
committer | Gabriel Caruso <carusogabriel34@gmail.com> | 2017-12-20 20:53:55 +0100 |
commit | 7774e3846c525ff65c6d9b86aacb1cc3bc229e3e (patch) | |
tree | 6c8542fa21b7a3ebea93ab86ac2817b2dc63f799 /system | |
parent | 058a127a6a5e15f39def341e67a7cd6418882c34 (diff) |
Add extra line before return
Diffstat (limited to 'system')
-rw-r--r-- | system/database/DB_result.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/system/database/DB_result.php b/system/database/DB_result.php index 821a0ea07..40b8fbb74 100644 --- a/system/database/DB_result.php +++ b/system/database/DB_result.php @@ -334,6 +334,7 @@ class CI_DB_result { if ($type === 'object') return $this->row_object($n); elseif ($type === 'array') return $this->row_array($n); + return $this->custom_row_object($n, $type); } |