Index: html.formorder.class.php
===================================================================
RCS file: /sources/dolibarr/dolibarr/htdocs/html.formorder.class.php,v
retrieving revision 1.1
diff -u -r1.1 html.formorder.class.php
--- html.formorder.class.php	16 Nov 2008 01:54:33 -0000	1.1
+++ html.formorder.class.php	25 Nov 2008 13:04:22 -0000
@@ -80,6 +80,10 @@
 	function select_methodes_commande($selected='',$htmlname='source_id',$addempty=0)
 	{
 		global $conf,$langs;
+		
+		require_once(DOL_DOCUMENT_ROOT."/html.form.class.php");
+		$form=new Form($this->db);
+		
 		$listemethodes=array();
 
 		$sql = "SELECT rowid, libelle ";
@@ -105,7 +109,7 @@
 			return -1;
 		}
 
-		print $this->select_array($htmlname,$listemethodes,$selected,$addempty);
+		print $form->select_array($htmlname,$listemethodes,$selected,$addempty);
 		return 1;
 	}
 

