Update for error
authorSteve Sutton <steve@gaslightmedia.com>
Thu, 10 Nov 2016 17:14:52 +0000 (12:14 -0500)
committerSteve Sutton <steve@gaslightmedia.com>
Thu, 10 Nov 2016 17:14:52 +0000 (12:14 -0500)
ignore error for file_exists warning.

setup/setup.phtml

index 191f068..a06eb02 100644 (file)
@@ -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";
                         }
                     }