diff --git a/system/libraries/Exceptions.php b/system/libraries/Exceptions.php
index 6d58ee6..8f90ff8 100644
--- a/system/libraries/Exceptions.php
+++ b/system/libraries/Exceptions.php
@@ -120,7 +120,7 @@
ob_end_flush();
}
ob_start();
- include_once(APPPATH.'errors/'.$template.EXT);
+ include(APPPATH.'errors/'.$template.EXT);
$buffer = ob_get_contents();
ob_end_clean();
return $buffer;
@@ -156,7 +156,7 @@
ob_end_flush();
}
ob_start();
- include_once(APPPATH.'errors/error_php'.EXT);
+ include(APPPATH.'errors/error_php'.EXT);
$buffer = ob_get_contents();
ob_end_clean();
echo $buffer;