Maxbans -> LiteBans

This commit is contained in:
Ruan 2015-02-18 19:06:56 +02:00
parent 5e9b22465c
commit f95826f95c
5 changed files with 10 additions and 13 deletions

View File

@ -1,7 +1,4 @@
maxbans-php litebans-php
=========== ===========
PHP listings script for MaxBans PHP listings script for LiteBans
Demo: http://yive.me/maxbans/

View File

@ -6,5 +6,5 @@ $conn = mysql_connect($dbhost, $dbuser, $dbpass);
if (!$conn) { if (!$conn) {
die('Could not connect: ' . mysql_error()); die('Could not connect: ' . mysql_error());
} }
mysql_select_db('maxbans'); mysql_select_db('litebans');
?> ?>

View File

@ -1,5 +1,5 @@
<?php <?php
// <<---------Ban Listing Settings (Simplified)--------->> // // <<---------Ban Listing Settings (Simplified)--------->> //
$name = 'Maxbans'; $name = 'LiteBans';
$serverip = 'mc.example.com'; $serverip = 'mc.example.com';
?> ?>

View File

@ -22,7 +22,7 @@ if (!$retval) {
<div class="col-lg-12"> <div class="col-lg-12">
<h1 class="page-header">IP Bans</h1> <h1 class="page-header">IP Bans</h1>
<ol class="breadcrumb"> <ol class="breadcrumb">
<li><a href="index">Home</a></li> <li><a href="index.php">Home</a></li>
<li class="active">IP Bans</li> <li class="active">IP Bans</li>
</ol> </ol>
</div> </div>

View File

@ -22,7 +22,7 @@ if (!$retval) {
<div class="col-lg-12"> <div class="col-lg-12">
<h1 class="page-header">Warnings</h1> <h1 class="page-header">Warnings</h1>
<ol class="breadcrumb"> <ol class="breadcrumb">
<li><a href="index">Home</a></li> <li><a href="index.php">Home</a></li>
<li class="active">Warnings</li> <li class="active">Warnings</li>
</ol> </ol>
</div> </div>
@ -34,16 +34,16 @@ if (!$retval) {
<thead> <thead>
<tr> <tr>
<th> <th>
<center>Name</center> <div style="text-align: center;">Name</div>
</th> </th>
<th> <th>
<center>Warned By</center> <div style="text-align: center;">Warned By</div>
</th> </th>
<th> <th>
<center>Reason</center> <div style="text-align: center;">Reason</div>
</th> </th>
<th> <th>
<center>Warned Until</center> <div style="text-align: center;">Warned Until</div>
</th> </th>
</tr> </tr>
</thead> </thead>