aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/entities.php
diff options
context:
space:
mode:
authorewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-12 03:01:55 +0000
committerewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-12 03:01:55 +0000
commit8e4a4cc6f5267d2060cafed7fd2533be29536f80 (patch)
treefa54a48d277636a8a8ccd79e283a665e28b2526e /engine/lib/entities.php
parent98b61f4a6e1bb08dced4ecea4cd72939b69692f6 (diff)
downloadelgg-8e4a4cc6f5267d2060cafed7fd2533be29536f80.tar.gz
elgg-8e4a4cc6f5267d2060cafed7fd2533be29536f80.tar.bz2
Refs #2610: Using call_user_func in url hooks
git-svn-id: http://code.elgg.org/elgg/trunk@8139 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/entities.php')
-rw-r--r--engine/lib/entities.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/lib/entities.php b/engine/lib/entities.php
index fb4cdd2e6..459f05ada 100644
--- a/engine/lib/entities.php
+++ b/engine/lib/entities.php
@@ -1783,17 +1783,17 @@ function get_entity_url($entity_guid) {
if (isset($CONFIG->entity_url_handler[$entity->getType()][$entity->getSubType()])) {
$function = $CONFIG->entity_url_handler[$entity->getType()][$entity->getSubType()];
if (is_callable($function)) {
- $url = $function($entity);
+ $url = call_user_func($function, $entity);
}
} elseif (isset($CONFIG->entity_url_handler[$entity->getType()]['all'])) {
$function = $CONFIG->entity_url_handler[$entity->getType()]['all'];
if (is_callable($function)) {
- $url = $function($entity);
+ $url = call_user_func($function, $entity);
}
} elseif (isset($CONFIG->entity_url_handler['all']['all'])) {
$function = $CONFIG->entity_url_handler['all']['all'];
if (is_callable($function)) {
- $url = $function($entity);
+ $url = call_user_func($function, $entity);
}
}