From: Evan Prodromou Date: Mon, 2 Jun 2008 19:03:57 +0000 (-0400) Subject: add a namespace when checking for LocalID element X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=740460e2ac8b1091eec9e4490c2b98f81a40b0de;p=quix0rs-gnu-social.git add a namespace when checking for LocalID element darcs-hash:20080602190357-84dde-fbfece18db8a6c4c916c1a58dca1b4a7998772f1.gz --- diff --git a/lib/omb.php b/lib/omb.php index d7fa701957..ead347860d 100644 --- a/lib/omb.php +++ b/lib/omb.php @@ -89,7 +89,7 @@ function omb_local_id($service) { if (!$service) { return NULL; } - $els = $service->getElements('LocalID'); + $els = $service->getElements('xrd:LocalID'); return ($els) ? $els[0] : NULL; }