From 010a942025b2cd0a8076e9d343fde72e4cfaaa2c Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Sun, 25 May 2014 05:13:31 -0400
Subject: [PATCH] Silence possible PHP Warning: file_exists(): open_basedir restriction in effect.

---
 program/include/iniset.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/program/include/iniset.php b/program/include/iniset.php
index cb72ae1..5c30654 100644
--- a/program/include/iniset.php
+++ b/program/include/iniset.php
@@ -61,7 +61,7 @@
 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';
 }
 

--
Gitblit v1.9.1