From 974ac48771915406527b4f2e5670c7e7cb5aa314 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 1 Sep 2010 16:55:16 -0400 Subject: [PATCH] bug in Profile::fromURI() wasn't returning profile --- classes/Profile.php | 1 + 1 file changed, 1 insertion(+) diff --git a/classes/Profile.php b/classes/Profile.php index 87cfab0e01..8f86795504 100644 --- a/classes/Profile.php +++ b/classes/Profile.php @@ -979,5 +979,6 @@ class Profile extends Memcached_DataObject Event::handle('EndGetProfileFromURI', array($uri, $profile)); } + return $profile; } }