From fddd90d38054b7a1d3e0be851b24b4d90f30b4ad Mon Sep 17 00:00:00 2001 From: Till Brehm <tbrehm@ispconfig.org> Date: Fri, 21 Feb 2014 05:56:58 -0500 Subject: [PATCH] Fixed: FS#3351 - UK shows in wrong order when creating new client --- interface/web/client/form/client.tform.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/interface/web/client/form/client.tform.php b/interface/web/client/form/client.tform.php index 5869776..41e49b6 100644 --- a/interface/web/client/form/client.tform.php +++ b/interface/web/client/form/client.tform.php @@ -250,7 +250,7 @@ 'formtype' => 'SELECT', 'default' => (isset($conf['language']) ? strtoupper($conf['language']) : ''), 'datasource' => array ( 'type' => 'SQL', - 'querystring' => 'SELECT iso,printable_name FROM country ORDER BY iso ASC', + 'querystring' => 'SELECT iso,printable_name FROM country ORDER BY printable_name ASC', 'keyfield' => 'iso', 'valuefield' => 'printable_name' ), -- Gitblit v1.9.1