add No Server as an option is Server filter

pull/2077/head
Isaac Connor 2018-01-09 07:13:03 -08:00
parent b7ad24a266
commit 4047d0ffc8
1 changed files with 1 additions and 0 deletions

View File

@ -142,6 +142,7 @@ foreach ( dbFetchAll( 'SELECT Id,Name FROM States ORDER BY lower(Name) ASC' ) as
}
$servers = array();
$servers['ZM_SERVER_ID'] = 'Current Server';
$servers['NULL'] = 'No Server';
foreach ( dbFetchAll( 'SELECT Id,Name FROM Servers ORDER BY lower(Name) ASC' ) as $server ) {
$servers[$server['Id']] = $server['Name'];
}