diff options
author | Antonio Gallo <tonicucoz@gmail.com> | 2012-05-28 16:04:30 +0000 |
---|---|---|
committer | Antonio Gallo <tonicucoz@gmail.com> | 2012-05-28 16:04:30 +0000 |
commit | 3bc07dabc797c7acdeafed68cf63c77c48077005 (patch) | |
tree | 32e53b26e9dfc3083ca2792d0927412b4b18aa7e /h-source/Library/Helper/List.php | |
parent | 129934f892850a90f98f8f5a0e7746cfe57bb958 (diff) |
administrators can now view the actions of a single user in a compact format - part 2
Diffstat (limited to 'h-source/Library/Helper/List.php')
-rwxr-xr-x | h-source/Library/Helper/List.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/h-source/Library/Helper/List.php b/h-source/Library/Helper/List.php index c455454..ba59643 100755 --- a/h-source/Library/Helper/List.php +++ b/h-source/Library/Helper/List.php @@ -172,7 +172,7 @@ class Helper_List extends Helper_Html { public function replaceFields($string,$rowArray) { $this->__rowArray = $rowArray; //used by the replaceField method - $string = preg_replace_callback('/(\;)(.*?)(\;)/', array($this, 'replaceField') ,$string); + $string = preg_replace_callback('/(\;)(.*?)(\;)/', 'Helper_List::replaceField' ,$string); return $string; } |