projects
/
quix0rs-gnu-social.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7cd666a
)
Use new StatusNetwork->serverName() to get full domain for wildcard config until...
author
Brion Vibber
<brion@pobox.com>
Sun, 24 Jan 2010 23:44:09 +0000
(15:44 -0800)
committer
Brion 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
patch
|
blob
|
history
diff --git
a/lib/iomaster.php
b/lib/iomaster.php
index 004e92b3eea067f8819887a94980d0ad4eff9879..3bf82bc6b47903b76fc42631ddb1fdbc4014a0aa 100644
(file)
--- 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;
}