From: <var...@us...> - 2014-06-12 13:45:49
|
Revision: 8891 http://sourceforge.net/p/phpwiki/code/8891 Author: vargenau Date: 2014-06-12 13:45:42 +0000 (Thu, 12 Jun 2014) Log Message: ----------- Remove size for file input Modified Paths: -------------- trunk/lib/plugin/HtmlConverter.php Modified: trunk/lib/plugin/HtmlConverter.php =================================================================== --- trunk/lib/plugin/HtmlConverter.php 2014-06-11 16:21:02 UTC (rev 8890) +++ trunk/lib/plugin/HtmlConverter.php 2014-06-12 13:45:42 UTC (rev 8891) @@ -52,8 +52,7 @@ 'name' => 'MAX_FILE_SIZE', 'value' => MAX_UPLOAD_SIZE))); $contents->pushContent(HTML::input(array('name' => 'userfile', - 'type' => 'file', - 'size' => '50'))); + 'type' => 'file'))); $contents->pushContent(HTML::raw(" ")); $contents->pushContent(HTML::input(array('value' => _("Convert"), 'type' => 'submit'))); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |