From f5fa42eb55a0c47e486bc2303eed3549cc50d32f Mon Sep 17 00:00:00 2001 From: Andrey Kutejko Date: Fri, 13 May 2011 16:50:18 +0300 Subject: [PATCH] fix deprecated call --- ipf/admin/model.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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{ -- 2.49.0