Browse Source

Suppress error messages of failed database connects and config save attempts

Tobias Reich 8 years ago
parent
commit
502f01ae6c
2 changed files with 2 additions and 2 deletions
  1. 1 1
      php/Modules/Config.php
  2. 1 1
      php/Modules/Database.php

+ 1 - 1
php/Modules/Config.php

@@ -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;
 

+ 1 - 1
php/Modules/Database.php

@@ -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;