diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-06-02 14:51:37 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-06-02 14:51:37 -0400 |
commit | 0f374fb944438644b4e1059fc84995615e92e870 (patch) | |
tree | 5c314127da95e93484f0550a3459488e154f8212 /actions/remotesubscribe.php | |
parent | 823b79366fe25059f7526e13da0175e8ecbeedb4 (diff) |
minor corrections for OMB discovery
darcs-hash:20080602185137-84dde-0a3db0833eaf9361447559a6366e3820ae1f0694.gz
Diffstat (limited to 'actions/remotesubscribe.php')
-rw-r--r-- | actions/remotesubscribe.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/remotesubscribe.php b/actions/remotesubscribe.php index b0e49903b..c61109d6a 100644 --- a/actions/remotesubscribe.php +++ b/actions/remotesubscribe.php @@ -186,7 +186,7 @@ class RemotesubscribeAction extends Action { # XXX: check that we got all the services we needed foreach (array_merge($omb_endpoints, $oauth_endpoints) as $type) { - if (!array_key_exists($type, $omb)) { + if (!array_key_exists($type, $omb) || !$omb[$type]) { common_debug('remotesubscribe.php - could not find type "'.$type.'"'); return NULL; } |