forked from GNUsocial/gnu-social
Fix variable name in NoConfigException
This commit is contained in:
parent
ddc4a7d2ff
commit
37b106d49c
@ -354,10 +354,10 @@ class StatusNet
|
|||||||
|
|
||||||
class NoConfigException extends Exception
|
class NoConfigException extends Exception
|
||||||
{
|
{
|
||||||
public $config_files;
|
public $configFiles;
|
||||||
|
|
||||||
function __construct($msg, $config_files) {
|
function __construct($msg, $configFiles) {
|
||||||
parent::__construct($msg);
|
parent::__construct($msg);
|
||||||
$this->config_files = $config_files;
|
$this->configFiles = $configFiles;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user