]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Use new StatusNetwork->serverName() to get full domain for wildcard config until...
authorBrion Vibber <brion@pobox.com>
Sun, 24 Jan 2010 23:44:09 +0000 (15:44 -0800)
committerBrion Vibber <brion@pobox.com>
Sun, 24 Jan 2010 23:44:09 +0000 (15:44 -0800)
Fixes live bug with new *.status.net sites breaking queuedaemon.php

lib/iomaster.php

index 004e92b3eea067f8819887a94980d0ad4eff9879..3bf82bc6b47903b76fc42631ddb1fdbc4014a0aa 100644 (file)
@@ -88,7 +88,7 @@ abstract class IoMaster
         $sn = new Status_network();
         $sn->find();
         while ($sn->fetch()) {
-            $hosts[] = $sn->hostname;
+            $hosts[] = $sn->getServerName();
         }
         return $hosts;
     }