From 5b6d6fc731e4e1793f4f9cd13569cdd10f688ef8 Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Tue, 13 Mar 2012 09:45:52 +0100 Subject: [PATCH] Fix: wrong object name --- htdocs/core/class/html.form.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/core/class/html.form.class.php b/htdocs/core/class/html.form.class.php index 3bdaeaf60573a..c6cf2ce91494d 100644 --- a/htdocs/core/class/html.form.class.php +++ b/htdocs/core/class/html.form.class.php @@ -729,7 +729,7 @@ function select_remises($selected, $htmlname, $filter, $socid, $maxvalue=0) if ($filter) $sql.= " AND ".$filter; $sql.= " ORDER BY re.description ASC"; - dol_syslog(get_class(this)."::select_remises sql=".$sql); + dol_syslog(get_class($this)."::select_remises sql=".$sql); $resql=$this->db->query($sql); if ($resql) {