diff --git a/TODO b/TODO
index e39aee92..16b9ad48 100644
--- a/TODO
+++ b/TODO
@@ -7,7 +7,7 @@
 	* kathrine tickets - show/hide
 	* csrf token protection
 	* guild wars support like in Gesior
-	* move rest of the pages to Twig: lostaccount, highscores, guilds, etc.
+	* move rest of the pages to Twig: lostaccount, highscores, etc.
 
 1.0
 	* use Composer for additional libraries
diff --git a/install/tools/5-database.php b/install/tools/5-database.php
index 4bdfb273..fe08380a 100644
--- a/install/tools/5-database.php
+++ b/install/tools/5-database.php
@@ -182,7 +182,7 @@ if(!$db->hasColumn('players', 'created')) {
 
 if(!$db->hasColumn('players', 'deleted') && !$db->hasColumn('players', 'deletion')) {
 	if(query("ALTER TABLE `players` ADD `deleted` TINYINT(1) NOT NULL DEFAULT 0;"))
-		success($locale['step_database_adding_field'] . ' players.comment...');
+		success($locale['step_database_adding_field'] . ' players.deleted...');
 }
 
 if($db->hasColumn('players', 'hide_char')) {