diff --git a/modules/monitoring/library/Monitoring/Backend/Ido/Query/IdoQuery.php b/modules/monitoring/library/Monitoring/Backend/Ido/Query/IdoQuery.php index 5b42ebd58..1ce089be5 100644 --- a/modules/monitoring/library/Monitoring/Backend/Ido/Query/IdoQuery.php +++ b/modules/monitoring/library/Monitoring/Backend/Ido/Query/IdoQuery.php @@ -872,7 +872,9 @@ abstract class IdoQuery extends DbQuery protected function getCustomvarColumnName($customvar) { - return $this->customVars[strtolower($customvar)] . '.varvalue'; + if (isset($this->customVars[($customvar = strtolower($customvar))])) { + $this->customVars[strtolower($customvar)] . '.varvalue'; + } } public function aliasToColumnName($alias)