commit | a3f91b9e16ec70a079b8489ffc6a7ff310b35986 | [log] [tgz] |
---|---|---|
author | Kakysha <ezhikvdele@gmail.com> | Sat Dec 14 05:23:23 2013 +0400 |
committer | Kakysha <ezhikvdele@gmail.com> | Sat Dec 14 05:26:13 2013 +0400 |
tree | 995aa3657e545d60c492ab7a146b30996667a45e | |
parent | 37fe56fe9442e728893f6cc2a8cc4cfabf9f14c9 [diff] [blame] |
DB call_function() bug : funny typo -or- smart autocomplete?
diff --git a/system/database/DB_driver.php b/system/database/DB_driver.php index 9aa6c5d..72be14e 100644 --- a/system/database/DB_driver.php +++ b/system/database/DB_driver.php
@@ -1483,7 +1483,7 @@ } return (func_num_args() > 1) - ? call_user_func_array($function, array_splice(func_get_args(), 1)) + ? call_user_func_array($function, array_slice(func_get_args(), 1)) : call_user_func($function); }