diff --git a/includes/header.php b/includes/header.php
index 319f53c..c591965 100644
--- a/includes/header.php
+++ b/includes/header.php
@@ -1,11 +1,11 @@
+
 
     
         
         
             
diff --git a/includes/settings.php b/includes/settings.php
index 98df6ce..9c74b76 100644
--- a/includes/settings.php
+++ b/includes/settings.php
@@ -7,6 +7,9 @@ final class Settings {
         // Server name, shown on the main page and on the header
         $this->name = 'LiteBans';
 
+        // Clicking on the header name will send you to this address.
+        $this->name_link = '#';
+
         // Database information
         $host = 'localhost';
         $port = 3306;
@@ -28,23 +31,23 @@ final class Settings {
         // If you set a table prefix in config.yml, put it here too
         $table_prefix = "";
 
+        // The date format can be changed here.
+        // https://secure.php.net/manual/en/function.date.php
+        // Example of default: July 2, 2015, 9:19 pm
+        $this->date_format = 'F j, Y, g:i a';
+        date_default_timezone_set("UTC");
+
+        // Supported drivers: mysql, pgsql
+        $driver = 'mysql';
+
+        /*** End of configuration ***/
+
         $this->table_bans = "{$table_prefix}bans";
         $this->table_mutes = "{$table_prefix}mutes";
         $this->table_warnings = "{$table_prefix}warnings";
         $this->table_kicks = "${table_prefix}kicks";
         $this->table_history = "{$table_prefix}history";
 
-        // The date format can be changed here.
-        // https://secure.php.net/manual/en/function.date.php
-        // Example of default:
-        // July 2, 2015, 9:19 pm
-        $this->date_format = 'F j, Y, g:i a';
-        date_default_timezone_set("UTC");
-
-        $driver = 'mysql';
-
-        /*** End of configuration ***/
-
         $this->active_query = "";
 
         if ($driver === "pgsql") {
diff --git a/index.php b/index.php
index 169494d..7925c9a 100644
--- a/index.php
+++ b/index.php
@@ -2,7 +2,6 @@
 include './includes/head.php';
 include './includes/header.php';
 include_once './includes/settings.php';
-$settings = new Settings(false);
 ?>
 Index - name; ?>