diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2010-12-27 18:41:33 +0100 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2010-12-27 18:41:33 +0100 |
commit | 5cbe4dd1f0d94791fe86e08111b77c1d57b83f54 (patch) | |
tree | 54cfcbe82e0632bf9d438c288f00ccf817d8f3d3 /system/libraries/Table.php | |
parent | bde25d971bfbf4a54f1d40eedfd3290ebb5f91e5 (diff) | |
parent | de3dbc36dab42d86c66d76efd6fdb1d1dce71ce8 (diff) |
Automated merge with http://hg.ellislab.com/CodeIgniter-Reactor
Diffstat (limited to 'system/libraries/Table.php')
-rw-r--r-- | system/libraries/Table.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Table.php b/system/libraries/Table.php index a57781c29..b4c6d366e 100644 --- a/system/libraries/Table.php +++ b/system/libraries/Table.php @@ -346,7 +346,7 @@ class CI_Table { { if ($function !== FALSE && is_callable($function)) { - $out .= $function($cell); + $out .= call_user_func($function, $cell); } else { |