changeset 34:f761177dc1d4

Remove error suppression.
author edogawaconan <me@myconan.net>
date Tue, 04 Nov 2014 10:55:32 +0900
parents dc464717e028
children 21132c7b6aaa
files index.php
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/index.php	Sat Nov 01 17:31:34 2014 +0900
+++ b/index.php	Tue Nov 04 10:55:32 2014 +0900
@@ -27,7 +27,7 @@
 
   if (http_response_code() !== 200) { exit; }
 
-  $dir_handle = @opendir($dir);
+  $dir_handle = opendir($dir);
   $files = array();
   $dirs = array();
   while (($file = readdir($dir_handle)) !== false) {