forked from extern/egroupware
fix PHP Fatal error: Call to undefined method egw_customfields::get_customfields()
This commit is contained in:
parent
5db0e5c6e6
commit
5cc84ffe50
@ -435,7 +435,7 @@ class egw_customfields implements IteratorAggregate
|
||||
public static function change_account_ids($app, array $ids2change)
|
||||
{
|
||||
$total = 0;
|
||||
if (($cfs = self::get_customfields($app, true)))
|
||||
if (($cfs = self::get($app, true)))
|
||||
{
|
||||
foreach($cfs as &$data)
|
||||
{
|
||||
@ -470,7 +470,7 @@ class egw_customfields implements IteratorAggregate
|
||||
public static function get_account_cfs($app)
|
||||
{
|
||||
$types = array();
|
||||
if (($cfs = self::get_customfields($app, true)))
|
||||
if (($cfs = self::get($app, true)))
|
||||
{
|
||||
foreach($cfs as $name => $data)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user