Browse Source

Merge trunk with "Fix value reading from conf.php file" fix

pull/16/head
Adrien Dorsaz 12 years ago
parent
commit
d3f1b169c8
  1. 2
      system/Conf.php

2
system/Conf.php

@ -78,7 +78,7 @@ class Conf
$out = '<?php $conf = array(';
foreach($conf as $key => $value)
$out .= '"'.$key.'" => "'. $value . '",'."\n";
$out .= "'".$key."' => '". $value . "',"."\n";
$out .= ');';
$fp = fopen(DOCUMENT_ROOT.self::$conf_path.'/conf.php', 'w');

Loading…
Cancel
Save