diff --git a/include/ajax/ajax_add_menu.php b/include/ajax/ajax_add_menu.php index b8ad21c1e..b39c60208 100644 --- a/include/ajax/ajax_add_menu.php +++ b/include/ajax/ajax_add_menu.php @@ -127,7 +127,7 @@ select me_code,me_code||' '||coalesce(me_menu,'')||' '||coalesce(me_description, $p_order=new INum("p_order", "10"); $me_code=new ISelect('me_code'); - $me_code->size=15; + $me_code->rowsize=15; $me_code->value=$ame_code; diff --git a/include/lib/class_iselect.php b/include/lib/class_iselect.php index 2f8b64e38..2119bf16d 100644 --- a/include/lib/class_iselect.php +++ b/include/lib/class_iselect.php @@ -22,7 +22,7 @@ /*!\file * \brief Html Input , create a tag * if readonly == true then display the label corresponding to the selected value - * You can use also $this->size to specify the number of lines to display + * You can use also $this->rowsize to specify the number of lines to display * * @see Database::make_array */ @@ -40,11 +40,10 @@ class ISelect extends HtmlInput $disabled=($this->disabled==true)?"disabled":""; $rowsize = (isset ($this->rowsize)) ? ' size = "'.$this->rowsize.'"':""; - $size=(isset($this->size))?'size="'.$this->size.'"':""; $r=""; - $a="id\" NAME=\"$this->name\" $style $this->javascript $disabled $rowsize>"; if (empty($this->value)) return ''; for ( $i=0;$ivalue);$i++) {