summaryrefslogtreecommitdiffstats
path: root/application/controllers/GearmanController.php
diff options
context:
space:
mode:
authorBjörn Geiger2011-07-13 13:35:57 +0200
committerBjörn Geiger2011-07-13 13:35:57 +0200
commit863526ffeb447c809142d1955b83126084bf47c5 (patch)
treefa0c3d44b78d213f81ac25ed18253dd891506cc4 /application/controllers/GearmanController.php
parentnochmals ein Fehler (diff)
downloadpoolctrl-863526ffeb447c809142d1955b83126084bf47c5.tar.gz
poolctrl-863526ffeb447c809142d1955b83126084bf47c5.tar.xz
poolctrl-863526ffeb447c809142d1955b83126084bf47c5.zip
weitere Korrektur
Diffstat (limited to 'application/controllers/GearmanController.php')
-rw-r--r--application/controllers/GearmanController.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/application/controllers/GearmanController.php b/application/controllers/GearmanController.php
index 8291e29..679954f 100644
--- a/application/controllers/GearmanController.php
+++ b/application/controllers/GearmanController.php
@@ -12,10 +12,10 @@ class GearmanController extends Zend_Controller_Action
public function indexAction()
{
- $ipString = '132.230.4.1, 132.230.4.2, 132.230.4.3, 132.230.4.4, 132.230.4.5, 132.230.4.6, 132.230.4.7, 132.230.4.8, 132.230.4.9, 132.230.4.10, 132.230.4.11, 132.230.4.12, 132.230.4.13, 132.230.4.14, 132.230.4.15, 132.230.4.16, 132.230.4.17, 132.230.4.18, 132.230.4.19, 132.230.4.20, 132.230.4.21, 132.230.4.22, 132.230.4.23, 132.230.4.24, 132.230.4.25, 132.230.4.26, 132.230.4.27, 132.230.4.28, 132.230.4.29, 132.230.4.30';
+ $ipString = '132.230.4.1; 132.230.4.2; 132.230.4.3; 132.230.4.4; 132.230.4.5; 132.230.4.6; 132.230.4.7; 132.230.4.8; 132.230.4.9; 132.230.4.10; 132.230.4.11; 132.230.4.12; 132.230.4.13; 132.230.4.14; 132.230.4.15; 132.230.4.16; 132.230.4.17; 132.230.4.18; 132.230.4.19; 132.230.4.20; 132.230.4.21; 132.230.4.22; 132.230.4.23; 132.230.4.24; 132.230.4.25; 132.230.4.26; 132.230.4.27; 132.230.4.28; 132.230.4.29; 132.230.4.30';
$result = $this->gearmanClient->do("boot", $ipString);
- $results = explode(', ', $result);
+ $results = explode('; ', $result);
$this->view->results = $results;
}