mirror of
https://gitlab.com/ruany/litebans-php.git
synced 2025-12-13 19:44:52 +00:00
Fix title
This commit is contained in:
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 .
|
||||
|
||||
Reference in New Issue
Block a user