return the config-array in read_repository, like other classes read_repository functions does (eg. preferences)

This commit is contained in:
Ralf Becker 2004-04-04 10:02:25 +00:00
parent b9cb241948
commit bd187fca49

View File

@ -43,6 +43,7 @@
/*!
@function read_repository
@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()
{
@ -61,7 +62,7 @@
$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;
}
/*!