summaryrefslogtreecommitdiffstats
path: root/application
diff options
context:
space:
mode:
authorBjörn Geiger2011-08-10 13:42:54 +0200
committerBjörn Geiger2011-08-10 13:42:54 +0200
commit75fa6f86fce50b8b7a7ffd2dd167dfb4d1066398 (patch)
tree80738cae6667a824071bee42e48baa8119fc2f25 /application
parentminor (diff)
downloadpoolctrl-75fa6f86fce50b8b7a7ffd2dd167dfb4d1066398.tar.gz
poolctrl-75fa6f86fce50b8b7a7ffd2dd167dfb4d1066398.tar.xz
poolctrl-75fa6f86fce50b8b7a7ffd2dd167dfb4d1066398.zip
kleine korrektur
Diffstat (limited to 'application')
-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 0d303f0..6a05484 100644
--- a/application/controllers/GearmanController.php
+++ b/application/controllers/GearmanController.php
@@ -142,7 +142,7 @@ class GearmanController extends Zend_Controller_Action
);
$dataString = json_encode($data);
- $result = $this->gearmanClient->do("status", $data, 'status' . $eventName);
+ $result = $this->gearmanClient->do("status", $dataString, 'status' . $eventName);
if (! $this->gearmanClient->runTasks())
{
echo "ERROR " . $gmc->error() . "\n";
@@ -161,7 +161,7 @@ class GearmanController extends Zend_Controller_Action
);
$dataString = json_encode($data);
- $result = $this->gearmanClient->do("status", $data, 'status' . $eventName);
+ $result = $this->gearmanClient->do("status", $dataString, 'status' . $eventName);
if (! $this->gearmanClient->runTasks())
{
echo "ERROR " . $gmc->error() . "\n";