作者 Karson

修复安装检测权限的BUG

@@ -25,7 +25,7 @@ function is_really_writable($file) @@ -25,7 +25,7 @@ function is_really_writable($file)
25 { 25 {
26 return is_writable($file); 26 return is_writable($file);
27 } 27 }
28 - if (!is_file($file) OR ( $fp = @fopen($file, "w+")) === FALSE) 28 + if (!is_file($file) OR ( $fp = @fopen($file, "r+")) === FALSE)
29 { 29 {
30 return FALSE; 30 return FALSE;
31 } 31 }