diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-06-02 15:03:57 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-06-02 15:03:57 -0400 |
commit | 740460e2ac8b1091eec9e4490c2b98f81a40b0de (patch) | |
tree | a55671b1607d162479e1f0541bb1338973547b3d | |
parent | 5674061f550470f1b45c32df6f43966c53f44c9b (diff) |
add a namespace when checking for LocalID element
darcs-hash:20080602190357-84dde-fbfece18db8a6c4c916c1a58dca1b4a7998772f1.gz
-rw-r--r-- | lib/omb.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/omb.php b/lib/omb.php index d7fa70195..ead347860 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; } |