forked from extern/egroupware
return the config-array in read_repository, like other classes read_repository functions does (eg. preferences)
This commit is contained in:
parent
b9cb241948
commit
bd187fca49
@ -43,6 +43,7 @@
|
|||||||
/*!
|
/*!
|
||||||
@function read_repository
|
@function read_repository
|
||||||
@abstract reads the whole repository for $this->appname, appname has to be set via the constructor
|
@abstract reads the whole repository for $this->appname, appname has to be set via the constructor
|
||||||
|
@returns the whole config-array for that app
|
||||||
*/
|
*/
|
||||||
function read_repository()
|
function read_repository()
|
||||||
{
|
{
|
||||||
@ -61,7 +62,7 @@
|
|||||||
$this->config_data[$this->db->f('config_name')] = $this->db->f('config_value');
|
$this->config_data[$this->db->f('config_name')] = $this->db->f('config_value');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$this->read_data = $this->config_data;
|
return $this->read_data = $this->config_data;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
|
Loading…
Reference in New Issue
Block a user