From 2911ca3e96ab3b092e39976a64e519ee20f51f05 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Sun, 25 May 2014 11:13:31 +0200 Subject: Silence possible PHP Warning: file_exists(): open_basedir restriction in effect. --- program/include/iniset.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/program/include/iniset.php b/program/include/iniset.php index 090739e21..757fbdba4 100644 --- a/program/include/iniset.php +++ b/program/include/iniset.php @@ -61,7 +61,7 @@ require_once 'Roundcube/bootstrap.php'; spl_autoload_register('rcmail_autoload'); // include composer autoloader (if available) -if (file_exists('vendor/autoload.php')) { +if (@file_exists('vendor/autoload.php')) { require 'vendor/autoload.php'; } -- cgit v1.2.3