submit.php
2007-09-17 05:19
投稿者: サイト管理者
geeklog/public_html/filemgmt/submit.php
197行
$display .= "</ul>n<form action=submit.php method=post enctype='multipart/form-data'> n";
↓
$display .= "</ul>n<form action="submit.php" method="post" enctype="multipart/form-data"> n";
202行
$display .= "<input type=file name=newfile size=40 maxlength=100>";
↓
$display .= "<input type="file" name="newfile" size="40" maxlength="100" class="input-file">";
215行
$display .= "<input type="file" name="newfileshot" size="40" maxlength="60"></td></tr>n";
↓
$display .= "<input type="file" name="newfileshot" size="40" maxlength="60" class="input-file"></td></tr>n";
上の2つはコードが美しくないので修正。215行の部分でクラスを追加。custom.cssで定義。
Geeklog実験室
http://geeklogtest.maryn.jp/article.php/20070917051917193