diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-06-03 07:43:17 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-06-03 07:43:17 -0400 |
commit | 31829840802dd8433fdb278c8b014c45c7ef39c8 (patch) | |
tree | b59462bcba2840a284487aeb5a74f2e7816f97bb /lib | |
parent | 38b5ad6fd63439f53fc137c4b23f3ecd249f8790 (diff) |
fix service discovery (I think)
darcs-hash:20080603114317-84dde-04fe2734003fa8023708b6dbda6243d9fd15e9d8.gz
Diffstat (limited to 'lib')
-rw-r--r-- | lib/omb.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/omb.php b/lib/omb.php index 9d4a327a9..c75fb7903 100644 --- a/lib/omb.php +++ b/lib/omb.php @@ -66,6 +66,10 @@ function omb_hmac_sha1() { return $hmac_method; } +function omb_get_services($xrd, $type) { + return $xrd->services(array(omb_service_filter($type))); +} + function omb_service_filter($type) { return create_function('$s', 'return omb_match_service($s, \''.$type.'\');'); |