From 071c028897d290cd979e114752aac5f8656081be Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Tue, 4 Oct 2005 00:39:51 +0000 Subject: [PATCH] =?UTF-8?q?Renomme=20champ=20actif=20de=20llx=5Fcond=5Freg?= =?UTF-8?q?lement=20en=20"active"=20pour=20homog=E9n=E9it=E9=20avec=20autr?= =?UTF-8?q?es=20tables=20des=20dictionnaires=20et=20permettre=20son=20=E9d?= =?UTF-8?q?ition=20dans=20la=20page=20"configuration=20dictionnaires".?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- htdocs/html.form.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/html.form.class.php b/htdocs/html.form.class.php index 4364608d0d8..6d729a49a92 100644 --- a/htdocs/html.form.class.php +++ b/htdocs/html.form.class.php @@ -579,7 +579,7 @@ class Form dolibarr_syslog('html.form.class.php::load_cache_conditions_paiements'); $sql = "SELECT rowid, libelle"; $sql.= " FROM ".MAIN_DB_PREFIX."cond_reglement"; - $sql.= " WHERE actif=1"; + $sql.= " WHERE active=1"; $sql.= " ORDER BY sortorder"; $resql = $this->db->query($sql); if ($resql)