1
0

Better colour coding: Version without files (in db): grey; Only FULL:

orange; Only OTA: dark green.
This commit is contained in:
2018-01-15 12:55:40 +01:00
parent 41137663db
commit de84632d5b
3 changed files with 11 additions and 2 deletions

View File

@ -139,7 +139,7 @@ class SQLiteReader
$result = $stmt->fetchAll(\PDO::FETCH_ASSOC);
$version = array();
foreach ($result as $row) {
if (!is_null($row['fv'])) {
if (!is_null($row['fv']) && $which == self::BOTH) {
$version[] = $row['fv'];
}
$version[] = $row['tv'];