From: Brion Vibber Date: Sun, 24 Jan 2010 23:44:09 +0000 (-0800) Subject: Use new StatusNetwork->serverName() to get full domain for wildcard config until... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=60ce2ff3d01f22900d62b3d30ed89bc5e9d55167;p=quix0rs-gnu-social.git Use new StatusNetwork->serverName() to get full domain for wildcard config until we rebuild queues to be based on nicknames. Fixes live bug with new *.status.net sites breaking queuedaemon.php --- diff --git a/lib/iomaster.php b/lib/iomaster.php index 004e92b3ee..3bf82bc6b4 100644 --- a/lib/iomaster.php +++ b/lib/iomaster.php @@ -88,7 +88,7 @@ abstract class IoMaster $sn = new Status_network(); $sn->find(); while ($sn->fetch()) { - $hosts[] = $sn->hostname; + $hosts[] = $sn->getServerName(); } return $hosts; }