so_sql::init() returns now $this->data as eg. so_sql::read()

This commit is contained in:
Ralf Becker 2007-01-08 15:57:58 +00:00
parent 6387f19cae
commit e64e3e06b1

View File

@ -258,6 +258,7 @@ class so_sql
* initializes data with the content of key
*
* @param array $keys array with keys in form internalName => value
* @return array internal data after init
*/
function init($keys=array())
{
@ -266,6 +267,8 @@ class so_sql
$this->db2data();
$this->data_merge($keys);
return $this->data;
}
/**