mirror of
https://gitlab.com/ruany/litebans-php.git
synced 2025-05-23 08:29:06 +00:00
Fix title
This commit is contained in:
parent
fa5d9b260c
commit
cadab53fd8
4
bans.php
4
bans.php
@ -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 .
|
||||
|
@ -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 .
|
||||
|
@ -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 .
|
||||
|
Loading…
x
Reference in New Issue
Block a user