include Id in Filter dropdown

pull/2090/head^2
Isaac Connor 2018-04-30 15:21:05 -04:00
parent cae2c9e237
commit 433cffcce7
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ $filterNames = array( ''=>translate('ChooseFilter') );
$filter = NULL;
foreach ( dbFetchAll( 'SELECT * FROM Filters ORDER BY Name' ) as $row ) {
$filterNames[$row['Id']] = $row['Name'];
$filterNames[$row['Id']] = $row['Id'] . ' ' . $row['Name'];
if ( $row['Background'] )
$filterNames[$row['Id']] .= '*';
if ( $row['Concurrent'] )