]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Maintainer change for Ostatus_profile
authorMikael Nordfeldth <mmn@hethane.se>
Sat, 6 Jun 2015 13:58:08 +0000 (15:58 +0200)
committerMikael Nordfeldth <mmn@hethane.se>
Sat, 6 Jun 2015 13:58:08 +0000 (15:58 +0200)
plugins/OStatus/classes/Ostatus_profile.php

index 4d1b95e2b76eeedd30c5d31847f73a4be2b19a23..cb961dc96ba8f164bf2105e5d51d0134339b82e2 100644 (file)
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-if (!defined('STATUSNET')) {
-    exit(1);
-}
+if (!defined('GNUSOCIAL')) { exit(1); }
 
 /**
  * @package OStatusPlugin
- * @maintainer Brion Vibber <brion@status.net>
+ * @author Brion Vibber <brion@status.net>
+ * @maintainer Mikael Nordfeldth <mmn@hethane.se>
  */
 class Ostatus_profile extends Managed_DataObject
 {
@@ -1746,11 +1745,8 @@ class Ostatus_profile extends Managed_DataObject
             throw new Exception(_m('Not a valid webfinger address.'));
         }
 
-        $hints = array('webfinger' => $addr);
-
-        $dhints = DiscoveryHints::fromXRD($xrd);
-
-        $hints = array_merge($hints, $dhints);
+        $hints = array_merge(array('webfinger' => $addr),
+                             DiscoveryHints::fromXRD($xrd));
 
         // If there's an Hcard, let's grab its info
         if (array_key_exists('hcard', $hints)) {