diff options
author | Brion Vibber <brion@pobox.com> | 2010-02-17 16:52:46 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-02-17 16:52:46 -0800 |
commit | 453ad6a9964fe572f0f35821e3f78c6a77c57c49 (patch) | |
tree | e07801c493269d730dc813f294ee2d369356c351 /lib/iomaster.php | |
parent | a80fdf3142d05bdae77874acc7413cbbd70fad3d (diff) | |
parent | 07f145049e8f0de848255d7b21ddb64866db0c83 (diff) |
Merge branch 'testing' into 0.9.x
Diffstat (limited to 'lib/iomaster.php')
-rw-r--r-- | lib/iomaster.php | 23 |
1 files changed, 7 insertions, 16 deletions
diff --git a/lib/iomaster.php b/lib/iomaster.php index 3745a5c7a..7cfb2c9a0 100644 --- a/lib/iomaster.php +++ b/lib/iomaster.php @@ -55,27 +55,18 @@ abstract class IoMaster if ($multiSite !== null) { $this->multiSite = $multiSite; } - if ($this->multiSite) { - $this->sites = StatusNet::findAllSites(); - } else { - $this->sites = array(StatusNet::currentSite()); - } - - if (empty($this->sites)) { - throw new Exception("Empty status_network table, cannot init"); - } - foreach ($this->sites as $site) { - StatusNet::switchSite($site); - $this->initManagers(); - } + $this->initManagers(); } /** - * Initialize IoManagers for the currently configured site - * which are appropriate to this instance. + * Initialize IoManagers which are appropriate to this instance; + * pass class names or instances into $this->instantiate(). + * + * If setup and configuration may vary between sites in multi-site + * mode, it's the subclass's responsibility to set them up here. * - * Pass class names into $this->instantiate() + * Switching site configurations is an acceptable side effect. */ abstract function initManagers(); |