Suppress error messages of failed database connects and config save attempts

pull/475/head
Tobias Reich 8 years ago
parent c7e862124b
commit 502f01ae6c

@ -42,7 +42,7 @@ $config = "<?php
?>";
// Save file
if (file_put_contents(LYCHEE_CONFIG_FILE, $config)===false) return 'Warning: Could not create file!';
if (@file_put_contents(LYCHEE_CONFIG_FILE, $config)===false) return 'Warning: Could not create file!';
return true;

@ -81,7 +81,7 @@ final class Database {
public static function connect($host = 'localhost', $user, $password) {
// Open a new connection to the MySQL server
$connection = new Mysqli($host, $user, $password);
$connection = @new Mysqli($host, $user, $password);
// Check if the connection was successful
if ($connection->connect_errno) return false;

Loading…
Cancel
Save