>From bd9a5427c6e12954105f9694bd33185de4caba44 Mon Sep 17 00:00:00 2001 From: Vincent Danjean Date: Thu, 24 Jul 2014 00:58:07 +0200 Subject: [PATCH 2/3] =?UTF-8?q?Afficher=20les=20cl=C3=A9s=20par=20ordre=20?= =?UTF-8?q?de=20leur=20nom?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Quand on crée un appel de fond par montant, les clés à proposer sont maintenant triées par leur nom. --- include/appel_fond.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/appel_fond.inc.php b/include/appel_fond.inc.php index ff36cab..02e2cfa 100644 --- a/include/appel_fond.inc.php +++ b/include/appel_fond.inc.php @@ -207,7 +207,7 @@ $f_categorie_appel_label = $categorie_appel_label->input("w_categorie_appel_labe $f_categorie_appel_bt = $categorie_appel->search(); $key = new ISelect("key"); -$key->value = $cn->make_array("select cr_id,cr_name from coprop.clef_repartition"); +$key->value = $cn->make_array("select cr_id,cr_name from coprop.clef_repartition order by cr_name"); $key->selected = HtmlInput::default_value('key', -1, $_GET); $f_add_button = new IButton('add_card'); -- 2.0.0