[Timeline] SQL Bugfix for certain MySQL configurations.

This commit is contained in:
Andreas
2021-07-11 21:32:14 +02:00
parent 79fccc40f2
commit 583ecb7040

View File

@@ -102,7 +102,7 @@ class Timeline_model extends CI_Model
$sql .= " and col_mode ='" . $mode . "'";
}
$sql .= " and col_iota <> '' group by col_iota
$sql .= " and col_iota <> '' group by col_iota, name, prefix
order by date desc";
$query = $this->db->query($sql);
@@ -193,4 +193,4 @@ class Timeline_model extends CI_Model
return $results;
}
}
}