Browse Source

open file rw only if it is writable

tokul 20 năm trước cách đây
mục cha
commit
06741d07c7
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      functions/abook_local_file.php

+ 1 - 1
functions/abook_local_file.php

@@ -132,7 +132,7 @@ class abook_local_file extends addressbook_backend {
         $this->error = '';
         $file   = $this->filename;
         $create = $this->create;
-        $fopenmode = ($this->writeable ? 'a+' : 'r');
+        $fopenmode = (($this->writeable && is_writable($file)) ? 'a+' : 'r');
 
         /* Return true is file is open and $new is unset */
         if($this->filehandle && !$new) {