From 297d2515861d10b5699b78dc1026c909d6993bc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20Schro=CC=88der?= Date: Sat, 2 Aug 2014 20:51:35 +0200 Subject: [PATCH] fixed typo --- application/core/Database/Database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/core/Database/Database.php b/application/core/Database/Database.php index 9c2ec459..c4a7151e 100644 --- a/application/core/Database/Database.php +++ b/application/core/Database/Database.php @@ -125,7 +125,7 @@ class Database implements TimerListener { if ($result) { return true; } - $this->maniaControl->log("Database '{$this->config->name}' doesn't exit! Trying to create it..."); + $this->maniaControl->log("Database '{$this->config->name}' doesn't exist! Trying to create it..."); // Create database $databaseQuery = "CREATE DATABASE " . $this->mysqli->escape_string($this->config->name) . ";";