fixed bug in path to lam.conf
This commit is contained in:
parent
5e6b57c4d2
commit
266ba95456
|
@ -69,7 +69,7 @@ class Config {
|
||||||
|
|
||||||
// reloads preferences from ../config/lam.conf
|
// reloads preferences from ../config/lam.conf
|
||||||
function reload() {
|
function reload() {
|
||||||
$conffile = substr(__FILE__, 0, strlen(__FILE__) - 14) . "/config/lam.conf";
|
$conffile = substr(__FILE__, 0, strlen(__FILE__) - 15) . "/config/lam.conf";
|
||||||
if (is_file($conffile) == True) {
|
if (is_file($conffile) == True) {
|
||||||
$file = fopen($conffile, "r");
|
$file = fopen($conffile, "r");
|
||||||
while (!feof($file)) {
|
while (!feof($file)) {
|
||||||
|
|
Loading…
Reference in New Issue