From 61227033e8b72dacf5656a9d274dddba347ce6ec Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Thu, 10 Nov 2016 12:14:52 -0500 Subject: [PATCH] Update for error ignore error for file_exists warning. --- setup/setup.phtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/setup.phtml b/setup/setup.phtml index 191f068..a06eb02 100644 --- a/setup/setup.phtml +++ b/setup/setup.phtml @@ -174,7 +174,7 @@ function classLoader($className) && count($i) > 0 ) { foreach ($i as $j) { - if (file_exists("{$j}/{$class}.php")) { + if (@file_exists("{$j}/{$class}.php")) { require_once "{$j}/{$class}.php"; } } -- 2.17.1