[vcl4php-developers] bug fix - property needs surfaced in upload
Brought to you by:
ttm
|
From: Gary <z0...@40...> - 2009-05-21 20:42:02
|
upload component
In stdctrls.inc.php around line 5700 find
[PHP]return $accept. ' ' .$size. ' ' .$maxlength .' '. $taborder .' '.
$hint .' '. $events .' '. $class;[/PHP]
and replace with
[PHP] // set enabled/disabled status
$disabled = (!$this->_enabled) ? "disabled" : "";
return $disabled. ' ' .$accept. ' ' .$size. ' ' .$maxlength
.' '. $taborder .' '. $hint .' '. $events .' '. $class;
[/PHP]
|