From 4c300ff5744ab7d39e68edd933e6d97e529eb145 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Mon, 2 Nov 2015 20:51:19 +1100 Subject: [PATCH] Remove unnecessary check Signed-off-by: Madhura Jayaratne --- libraries/DatabaseInterface.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/DatabaseInterface.php b/libraries/DatabaseInterface.php index 9881957962..4965248510 100644 --- a/libraries/DatabaseInterface.php +++ b/libraries/DatabaseInterface.php @@ -485,7 +485,7 @@ class DatabaseInterface $tables = array(); - if (! isset($GLOBALS['cfg']['Server']['DisableIS']) || !$GLOBALS['cfg']['Server']['DisableIS']) { + if (! $GLOBALS['cfg']['Server']['DisableIS']) { $sql_where_table = $this->_getTableCondition( $table, $tbl_is_group, $table_type );