Fix title

This commit is contained in:
Ruan 2015-03-11 10:43:26 +02:00
parent fa5d9b260c
commit cadab53fd8
3 changed files with 9 additions and 3 deletions

View File

@ -1,8 +1,10 @@
<?php
require 'includes/page.php';
?>
<head>
<title>Tempbans - <?php echo $name; ?></title>
</head>
<?php
require 'includes/page.php';
$table = $table_bans;
$sql = 'SELECT * FROM ' . $table . ' INNER JOIN ' . $table_history . ' on ' . $table . '.uuid=' . $table_history . '.uuid ' . $active_query .

View File

@ -1,8 +1,10 @@
<?php
require 'includes/page.php';
?>
<head>
<title>TempMutes - <?php echo $name; ?></title>
</head>
<?php
require 'includes/page.php';
$table = $table_mutes;
$sql = 'SELECT * FROM ' . $table . ' INNER JOIN ' . $table_history . ' on ' . $table . '.uuid=' . $table_history . '.uuid ' . $active_query .

View File

@ -1,8 +1,10 @@
<?php
require 'includes/page.php';
?>
<head>
<title>Warnings - <?php echo $name; ?></title>
</head>
<?php
require 'includes/page.php';
$table = $table_warnings;
$sql = 'SELECT * FROM ' . $table . ' INNER JOIN ' . $table_history . ' on ' . $table . '.uuid=' . $table_history . '.uuid ' . $active_query .