diff --git a/install/index.php b/install/index.php
index 10855a2ee40694c8aaa62739ee6aea8b9a44f229..ef69570dea52b49e23d74aad412ea02d97057c68 100644
--- a/install/index.php
+++ b/install/index.php
@@ -20,10 +20,10 @@ if(isset($_POST['datenbank_anlegen'])){
 	$db_prefix = "'.$_POST['prefix'].'";
 	
 	//Passwort zusatz
-	$pw_zusatz = '. create_code(5) .';
+	$pw_zusatz = "'. create_code(5) .'";
 	
 	// Verschlüsselungspasswort
-	$ver_schluessel = '. create_code(16) .';
+	$ver_schluessel = "'. create_code(16) .'";
 	
 	//Datenbankverbindung herstellen
 	$sql_open = @mysqli_connect($db_host, $db_user, $db_pass, $db_base) or die(\'Verbindung zum Mysql Server fehlgeschlagen! <br>Tipp: <a href="http://www.vms-tutorial.de/wiki//Lib/Functions">http://www.vms-tutorial.de/wiki//Lib/Functions</a>\');