ProgramstatusQuery: Provide a(nother) fallback for older IDO installations

fixes #9168
This commit is contained in:
Johannes Meyer 2015-07-24 15:46:12 +02:00
parent 9d32e2ebb1
commit 998610bafa
1 changed files with 3 additions and 0 deletions

View File

@ -60,5 +60,8 @@ class ProgramstatusQuery extends IdoQuery
if (version_compare($this->getIdoVersion(), '1.11.8', '<')) {
$this->columnMap['programstatus']['program_version'] = '(NULL)';
}
if (version_compare($this->getIdoVersion(), '1.8', '<')) {
$this->columnMap['programstatus']['disable_notif_expire_time'] = '(NULL)';
}
}
}