diff options
| author | michael pereira | 2011-03-25 17:24:17 +0100 |
|---|---|---|
| committer | michael pereira | 2011-03-25 17:24:17 +0100 |
| commit | 9615b25b5afd08263a09ae9ef71daeb9e545b6e5 (patch) | |
| tree | 98ccbd71450ca558bb4ebddeef5845b562e53fd8 /application/modules | |
| parent | fixes (diff) | |
| parent | gruppengraph nach einloggen in /user/ (diff) | |
| download | pbs2-9615b25b5afd08263a09ae9ef71daeb9e545b6e5.tar.gz pbs2-9615b25b5afd08263a09ae9ef71daeb9e545b6e5.tar.xz pbs2-9615b25b5afd08263a09ae9ef71daeb9e545b6e5.zip | |
Merge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2
Diffstat (limited to 'application/modules')
| -rw-r--r-- | application/modules/dev/forms/FilterEvaluate.php | 2 | ||||
| -rw-r--r-- | application/modules/fbgui/controllers/IndexController.php | 3 | ||||
| -rw-r--r-- | application/modules/user/views/scripts/index/index.phtml | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/application/modules/dev/forms/FilterEvaluate.php b/application/modules/dev/forms/FilterEvaluate.php index 9922f2b..7fd16c3 100644 --- a/application/modules/dev/forms/FilterEvaluate.php +++ b/application/modules/dev/forms/FilterEvaluate.php @@ -12,7 +12,7 @@ class dev_Form_FilterEvaluate extends Zend_Form { $this->setName("Test Filter"); $this->setMethod('post'); - $this->setAction('/filter/evaluate'); + $this->setAction('/dev/filter/evaluate'); $this->addElement('text', 'ip', array( 'filters' => array('StringTrim'), diff --git a/application/modules/fbgui/controllers/IndexController.php b/application/modules/fbgui/controllers/IndexController.php index bc94db5..91d045d 100644 --- a/application/modules/fbgui/controllers/IndexController.php +++ b/application/modules/fbgui/controllers/IndexController.php @@ -30,6 +30,7 @@ class Fbgui_IndexController extends Zend_Controller_Action elseif(isset($_POST['serialnumber'])){ $results = $bootisomapper->findBy('serialnumber',$_POST['serialnumber']); + print_a($results); $bootiso->setOptions($results[0]); $bootiso->setID($results[0]['bootisoID']); $groupID = $bootiso->getGroupID(); @@ -44,7 +45,7 @@ class Fbgui_IndexController extends Zend_Controller_Action $clientID = $client->getID(); $session = new Application_Model_Session(); - $session->setBootisoID($_POST['bootisoID']); + $session->setBootisoID($bootiso->getID()); $session->setClientID($clientID); $session->setTime(time()); $session->setIp($_SERVER['REMOTE_ADDR']); diff --git a/application/modules/user/views/scripts/index/index.phtml b/application/modules/user/views/scripts/index/index.phtml index a6e84a7..0f1fab5 100644 --- a/application/modules/user/views/scripts/index/index.phtml +++ b/application/modules/user/views/scripts/index/index.phtml @@ -13,6 +13,6 @@ <?php endforeach ?> </ul> - +<img src='/stats/graphgroup/' /> <?php endif ?> |
