commit | 6600b6965d99e53408356f04f69703396c9c7d5f | [log] [tgz] |
---|---|---|
author | Rafael Queiroz <faelrq@gmail.com> | Fri Jun 08 14:34:20 2012 -0300 |
committer | Rafael Queiroz <faelrq@gmail.com> | Fri Jun 08 14:34:20 2012 -0300 |
tree | dadf9064f6df2940dfa08d53a503079c2b717fca | |
parent | a593c69de4ea125c096f611c78dd0839489e7ebd [diff] [blame] |
Return $this when values ($key OR $values) is NULL
diff --git a/system/database/DB_query_builder.php b/system/database/DB_query_builder.php index 3ed5562..5d0a2ae 100644 --- a/system/database/DB_query_builder.php +++ b/system/database/DB_query_builder.php
@@ -547,7 +547,7 @@ { if ($key === NULL OR $values === NULL) { - return; + return $this; } $type = $this->_group_get_type($type);