Revision: 785
http://sciret.svn.sourceforge.net/sciret/?rev=785&view=rev
Author: alpeb
Date: 2008-11-24 14:30:26 +0000 (Mon, 24 Nov 2008)
Log Message:
-----------
config.ini.php was renamed to config.php
Modified Paths:
--------------
trunk/actions/Install.php
Modified: trunk/actions/Install.php
===================================================================
--- trunk/actions/Install.php 2008-11-21 22:48:09 UTC (rev 784)
+++ trunk/actions/Install.php 2008-11-24 14:30:26 UTC (rev 785)
@@ -98,7 +98,7 @@
$configStr = "<?php\n\n return " . var_export($config->toArray(), true) . ";\n\n?>";
- $fp = fopen(dirname(__FILE__).'/../config.ini.php', 'w');
+ $fp = fopen(dirname(__FILE__).'/../config.php', 'w');
fwrite($fp, $configStr);
fclose($fp);
}
@@ -130,7 +130,7 @@
function _isConfigWritable() {
// is_writable() not working under windows
- if (!$fp = @fopen(dirname(__FILE__).'/../config.ini.php', 'a')) {
+ if (!$fp = @fopen(dirname(__FILE__).'/../config.php', 'a')) {
return false;
}
fclose($fp);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|