]> git.andy128k.dev Git - ipf.git/commitdiff
fix deprecated call
authorAndrey Kutejko <andy128k@gmail.com>
Fri, 13 May 2011 13:50:18 +0000 (16:50 +0300)
committerAndrey Kutejko <andy128k@gmail.com>
Fri, 13 May 2011 13:50:18 +0000 (16:50 +0300)
ipf/admin/model.php

index 68e0b1f23b2c0066e58b72559e4cf651b76b998e..7af23618d2620a3e120c667597e4e4a9b96e8310 100644 (file)
@@ -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{