aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/relationships.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/relationships.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/relationships.php')
-rw-r--r--engine/lib/relationships.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/relationships.php b/engine/lib/relationships.php
index c032ff5b9..0370a1e82 100644
--- a/engine/lib/relationships.php
+++ b/engine/lib/relationships.php
@@ -432,7 +432,7 @@ function get_relationship_url($id) {
}
if (is_callable($function)) {
- $url = $function($relationship);
+ $url = call_user_func($function, $relationship);
}
if ($url == "") {