summaryrefslogtreecommitdiffstats
path: root/system/libraries
diff options
context:
space:
mode:
authorPhil Sturgeon <email@philsturgeon.co.uk>2010-12-27 18:41:33 +0100
committerPhil Sturgeon <email@philsturgeon.co.uk>2010-12-27 18:41:33 +0100
commit5cbe4dd1f0d94791fe86e08111b77c1d57b83f54 (patch)
tree54cfcbe82e0632bf9d438c288f00ccf817d8f3d3 /system/libraries
parentbde25d971bfbf4a54f1d40eedfd3290ebb5f91e5 (diff)
parentde3dbc36dab42d86c66d76efd6fdb1d1dce71ce8 (diff)
Automated merge with http://hg.ellislab.com/CodeIgniter-Reactor
Diffstat (limited to 'system/libraries')
-rw-r--r--system/libraries/Table.php2
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
{