From: Andrey Kutejko Date: Fri, 13 May 2011 13:50:18 +0000 (+0300) Subject: fix deprecated call X-Git-Tag: 0.5~343 X-Git-Url: https://git.andy128k.dev/?a=commitdiff_plain;h=f5fa42eb55a0c47e486bc2303eed3549cc50d32f;p=ipf.git fix deprecated call --- diff --git a/ipf/admin/model.php b/ipf/admin/model.php index 68e0b1f..7af2361 100644 --- a/ipf/admin/model.php +++ b/ipf/admin/model.php @@ -274,11 +274,11 @@ class IPF_Admin_Model{ } $row[$h['name']] = $str; } - $this->linksRow(&$row, $o); + $this->linksRow($row, $o); return $row; } - protected function linksRow($row, $o){ + protected function linksRow(&$row, $o){ if (method_exists($this,'list_display_links')){ $links_display = $this->list_display_links(); }else{