diff --git a/core/includes/module.inc b/core/includes/module.inc
index 0b357a1..6dcf006 100644
--- a/core/includes/module.inc
+++ b/core/includes/module.inc
@@ -325,8 +325,7 @@ function module_load_include($type, $module, $name = NULL) {
 
   if (function_exists('drupal_get_path')) {
     $file = DRUPAL_ROOT . '/' . drupal_get_path('module', $module) . "/$name.$type";
-    if (is_file($file)) {
-      require_once $file;
+    if (@include_once($file)) {
       return $file;
     }
   }
