use select_many() without _expr

This commit is contained in:
Andrew Dolgov
2024-11-23 15:49:50 +03:00
parent 1fc19d6e50
commit 7be6484fee

View File

@@ -192,7 +192,7 @@ class Pref_Filters extends Handler_Protected {
->table_alias('r')
->join('ttrss_filter_types', ['r.filter_type', '=', 't.id'], 't')
->where('filter_id', $filter_id)
->select_many_expr('r.*, t.description AS field')
->select_many(['r.*', 'field' => 't.description'])
->find_many();
$rv = "";