|
From: <var...@us...> - 2009-03-01 14:27:58
|
Revision: 6609
http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6609&view=rev
Author: vargenau
Date: 2009-03-01 14:27:40 +0000 (Sun, 01 Mar 2009)
Log Message:
-----------
mkdir 0777, not 777
Modified Paths:
--------------
trunk/lib/IniConfig.php
Modified: trunk/lib/IniConfig.php
===================================================================
--- trunk/lib/IniConfig.php 2009-03-01 12:07:16 UTC (rev 6608)
+++ trunk/lib/IniConfig.php 2009-03-01 14:27:40 UTC (rev 6609)
@@ -524,7 +524,7 @@
$rs['PLUGIN_CACHED_CACHE_DIR'] = TEMP_DIR . '/cache';
if (!FindFile($rs['PLUGIN_CACHED_CACHE_DIR'], 1)) { // [29ms]
FindFile(TEMP_DIR, false, 1); // TEMP must exist!
- mkdir($rs['PLUGIN_CACHED_CACHE_DIR'], 777);
+ mkdir($rs['PLUGIN_CACHED_CACHE_DIR'], 0777);
}
// will throw an error if not exists.
define('PLUGIN_CACHED_CACHE_DIR', FindFile($rs['PLUGIN_CACHED_CACHE_DIR'],false,1));
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|