include Id in Filter dropdown
parent
cae2c9e237
commit
433cffcce7
|
@ -29,7 +29,7 @@ $filterNames = array( ''=>translate('ChooseFilter') );
|
||||||
$filter = NULL;
|
$filter = NULL;
|
||||||
|
|
||||||
foreach ( dbFetchAll( 'SELECT * FROM Filters ORDER BY Name' ) as $row ) {
|
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'] )
|
if ( $row['Background'] )
|
||||||
$filterNames[$row['Id']] .= '*';
|
$filterNames[$row['Id']] .= '*';
|
||||||
if ( $row['Concurrent'] )
|
if ( $row['Concurrent'] )
|
||||||
|
|
Loading…
Reference in New Issue