- $this->_debug("Scope does not match. VLV: " . var_export($this->_vlv_indexes_and_searches[$base_dn]['scope'], TRUE) . " while looking for " . var_export($scope, TRUE));
- return FALSE;
+ $this->_debug("Scope does not match. VLV: " . var_export($this->_vlv_indexes_and_searches[$base_dn]['scope'], true) . " while looking for " . var_export($scope, true));
+ return false;
}
} else {
$this->_debug("Filter does not match");
- return FALSE;
+ return false;
}
} else {
$this->_debug("No VLV for base dn", $base_dn);
- return FALSE;
+ return false;
}
}
/**
Return VLV indexes and searches including necessary configuration
details.
*/
- private function find_vlv_indexes_and_searches($refresh = FALSE)
+ private function find_vlv_indexes_and_searches($refresh = false)
{
if (!empty($this->config['vlv'])) {
- if ($this->config['vlv'] === FALSE) {
+ if ($this->config['vlv'] === false) {
return array();
} else {
return $this->config['vlv'];
}
}
- if (!$this->_vlv_indexes_and_searches === NULL) {
+ if (!$this->_vlv_indexes_and_searches === null) {