summaryrefslogtreecommitdiff
path: root/system
diff options
context:
space:
mode:
Diffstat (limited to 'system')
-rw-r--r--system/libraries/Database_Builder.php8
1 files changed, 0 insertions, 8 deletions
diff --git a/system/libraries/Database_Builder.php b/system/libraries/Database_Builder.php
index 553ffd98..e86ce379 100644
--- a/system/libraries/Database_Builder.php
+++ b/system/libraries/Database_Builder.php
@@ -190,8 +190,6 @@ class Database_Builder_Core {
{
foreach ($columns as $column)
{
- if (count($column) != 3)
- throw new Database_Exception('Column triplets require a column, op and value');
$this->where[] = array('AND' => $column);
}
}
@@ -218,8 +216,6 @@ class Database_Builder_Core {
{
foreach ($columns as $column)
{
- if (count($column) != 3)
- throw new Database_Exception('Column triplets require a column, op and value');
$this->where[] = array('OR' => $column);
}
}
@@ -426,8 +422,6 @@ class Database_Builder_Core {
{
foreach ($columns as $column)
{
- if (count($column) != 3)
- throw new Database_Exception('Column triplets require a column, op and value');
$this->having[] = array('AND' => $column);
}
}
@@ -453,8 +447,6 @@ class Database_Builder_Core {
{
foreach ($columns as $column)
{
- if (count($column) != 3)
- throw new Database_Exception('Column triplets require a column, op and value');
$this->having[] = array('OR' => $column);
}
}