credo in un dio crudele

e che nell'ira io nomo
This commit is contained in:
MallocNull 2014-07-10 00:01:13 -05:00
parent 9ded733d97
commit 17bf59339b
2 changed files with 3 additions and 3 deletions

View file

@ -17,7 +17,7 @@ include("header.php"); ?>
<input type="text" name="tzHour" maxlength="2" value="<?php echo substr($config->timezone, 1, 2); ?>" style="width:20px;" />
:
<input type="text" name="tzMins" maxlength="2" value="<?php echo substr($config->timezone, 4); ?>" style="width:20px;" />
<br />DST? <input type="checkbox" name="dst"<?php if($config->dst) { ?> checked="true"<?php } ?> />
<br /><abbr title="Daylight Savings Time?">DST?</abbr> <input type="checkbox" name="dst"<?php if($config->dst) { ?> checked="true"<?php } ?> />
</td></tr>
<tr><td style="text-align: right;">Chat Username:</td><td><input type="text" name="username" value="<?php echo $config->username; ?>" /></td></tr>
<tr><td style="text-align: right;">Bot Name:</td><td><input type="text" name="username" value="<?php echo $config->name; ?>" /></td></tr>

View file

@ -1,11 +1,11 @@
<html>
<head>
<title>AJAX Bot Administration</title>
<title><?php echo $config->name; ?> Administration</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<center>
<h1>Control Panel</h1>
<h1><?php echo $config->name; ?> Control Panel</h1>
<h4>
<?php
$request = substr($_SERVER["REQUEST_URI"], strrpos($_SERVER["REQUEST_URI"], "/")+1);