mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-08-09 12:51:01 +00:00
updates admin
This commit is contained in:
@@ -0,0 +1,56 @@
|
||||
<?php
|
||||
#################################################################################
|
||||
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
|
||||
## --------------------------------------------------------------------------- ##
|
||||
## Filename editExtraSet.tpl ##
|
||||
## Developed by: ronix ##
|
||||
## License: TravianZ Project ##
|
||||
## Copyright: TravianZ (c) 2010-2014. All rights reserved. ##
|
||||
## ##
|
||||
#################################################################################
|
||||
if (!isset($_SESSION)) {
|
||||
session_start();
|
||||
}
|
||||
if($_SESSION['access'] < 9) die(ACCESS_DENIED_ADMIN);
|
||||
?>
|
||||
<h2><center>Server Configuration</center></h2>
|
||||
<form action="../GameEngine/Admin/Mods/editNewsboxSet.php" method="POST">
|
||||
<input type="hidden" name="id" id="id" value="<?php echo $_SESSION['id']; ?>">
|
||||
<br />
|
||||
<table id="profile" cellpadding="0" cellspacing="0">
|
||||
<thead>
|
||||
<tr>
|
||||
<th colspan="2">Edit Extra Settings</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="50%">Limit Mailbox</td>
|
||||
<td width="50%">
|
||||
<select name="limit_mailbox">
|
||||
<option value="true" <?php if (LIMIT_MAILBOX==true) echo "selected";?>>Yes</option>
|
||||
<option value="false" <?php if (LIMIT_MAILBOX==false) echo "selected";?>>No</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Max Number of Mails</td>
|
||||
<td>30</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Error Reporting</td>
|
||||
<td><select name="error">
|
||||
<option value="error_reporting (E_ALL ^ E_NOTICE);" selected="selected">Yes</option>
|
||||
<option value="error_reporting (0);">No</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<br />
|
||||
<table width="100%">
|
||||
<tr><td align="left"><a href="../Admin/admin.php?p=config"><< back</a></td>
|
||||
<td align="right"><input type="image" border="0" src="../img/admin/b/ok1.gif"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
Reference in New Issue
Block a user