From: Sebastien D. <sde...@us...> - 2005-06-14 13:30:42
|
Update of /cvsroot/tslogparser/tslogparser/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2264 Modified Files: index.php Log Message: Fix upload size for large HA results Index: index.php =================================================================== RCS file: /cvsroot/tslogparser/tslogparser/admin/index.php,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- index.php 14 Jun 2005 12:42:47 -0000 1.14 +++ index.php 14 Jun 2005 13:30:31 -0000 1.15 @@ -277,7 +277,7 @@ { /* Output the new testsuite form */ echo "<form enctype=\"multipart/form-data\" method=\"POST\">\n"; - echo " <input type=\"hidden\" name=\"MAX_FILE_SIZE\" value=\"8388608\">"; + echo " <input type=\"hidden\" name=\"MAX_FILE_SIZE\" value=\"16777216\">"; echo " <input type=\"hidden\" name=\"action\" value=\"2\">\n"; echo " <input type=\"hidden\" name=\"add_ts\" value=\"add\">\n"; echo " <input type=\"hidden\" name=\"module\" value=\"".$_GET["module"]."\">\n"; @@ -536,7 +536,7 @@ { /* Output the new testsuite form */ echo "<form enctype=\"multipart/form-data\" method=\"POST\">\n"; - echo " <input type=\"hidden\" name=\"MAX_FILE_SIZE\" value=\"8388608\">"; + echo " <input type=\"hidden\" name=\"MAX_FILE_SIZE\" value=\"16777216\">"; echo " <input type=\"hidden\" name=\"action\" value=\"2\">\n"; echo " <input type=\"hidden\" name=\"add_run\" value=\"add\">\n"; echo " <input type=\"hidden\" name=\"tsid\" value=\"".$_GET["tsid"]."\">\n"; |