Merge branch 'prevent-sqlinjection' of https://gitlab.com/bluekay/shopping-list into prevent-sqlinjection

This commit is contained in:
Tim Krehan 2019-05-22 10:45:50 +02:00
commit 865fee3640

View file

@ -1,5 +1,11 @@
<?php <?php
$CONFIG = array ( $CONFIG = array (
'installed' => false, 'installed' => true,
'host' => 'localhost',
'username' => 'shoppinglist',
'passwd' => 'Erfolg100%',
'database' => 'shoppinglist',
'theme' => 'default',
); );
?> ?>