mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-15 01:09:57 +09:00
34 lines
1.3 KiB
HTML
34 lines
1.3 KiB
HTML
<!--#include("header.html")-->
|
|
<!--%import("filter/insert_config.xml")-->
|
|
|
|
<form action="./" method="get" onsubmit="return procFilter(this, insert_config)">
|
|
<table cellspacing="0" class="adminTable">
|
|
<tr class="row2">
|
|
<th scope="col"><div>{$lang->allowed_filesize}</div></th>
|
|
<td>
|
|
<input type="text" name="allowed_filesize" value="{$config->allowed_filesize}" class="inputTypeText" size="3" />MB
|
|
<p>{$lang->about_allowed_filesize}</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="col"><div>{$lang->allowed_attach_size}</div></th>
|
|
<td>
|
|
<input type="text" name="allowed_attach_size" value="{$config->allowed_attach_size}" class="inputTypeText" size="3" />MB
|
|
/ {ini_get('upload_max_filesize')}
|
|
<p>{$lang->about_allowed_attach_size}</p>
|
|
</td>
|
|
</tr>
|
|
<tr class="row2">
|
|
<th scope="col"><div>{$lang->allowed_filetypes}</div></th>
|
|
<td>
|
|
<input type="text" name="allowed_filetypes" value="{$config->allowed_filetypes}" class="inputTypeText w100" />
|
|
<p>{$lang->about_allowed_filetypes}</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td scope="row" colspan="2" class="right">
|
|
<span class="button"><input type="submit" value="{$lang->cmd_registration}" accesskey="s" /></span>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|