diff --git a/campcaster/src/modules/storageServer/var/conf.php b/campcaster/src/modules/storageServer/var/conf.php index 0340b129c..8d251b175 100644 --- a/campcaster/src/modules/storageServer/var/conf.php +++ b/campcaster/src/modules/storageServer/var/conf.php @@ -132,22 +132,22 @@ set_include_path('.'.PATH_SEPARATOR.$config['pearPath'].PATH_SEPARATOR.$old_ip); // see if a ~/.campcaster/storageServer.conf.php exists, and // overwrite the settings from there if any -$this_file = null; -if(isset($_SERVER["SCRIPT_FILENAME"])){ - $this_file = $_SERVER["SCRIPT_FILENAME"]; -}elseif(isset($argv[0])){ - $this_file = $argv[0]; +$this_file = null; +if (isset($_SERVER["SCRIPT_FILENAME"])) { + $this_file = $_SERVER["SCRIPT_FILENAME"]; +} elseif(isset($argv[0])) { + $this_file = $argv[0]; } -if(!is_null($this_file)){ - $fileowner_id = fileowner($this_file); - $fileowner_array = posix_getpwuid($fileowner_id); +if (!is_null($this_file)) { + $fileowner_id = fileowner($this_file); + $fileowner_array = posix_getpwuid($fileowner_id); $fileowner_homedir = $fileowner_array['dir']; - $fileowner_name = $fileowner_array['name']; - $home_conf = $fileowner_homedir . '/.campcaster/storageServer.conf.php'; + $fileowner_name = $fileowner_array['name']; + $home_conf = $fileowner_homedir . '/.campcaster/storageServer.conf.php'; if (file_exists($home_conf)) { $default_config = $config; - $developer_name = $fileowner_name; - include $home_conf; + $developer_name = $fileowner_name; + include($home_conf); $user_config = $config; $config = $user_config + $default_config; }