summaryrefslogtreecommitdiffstats
path: root/application/modules
diff options
context:
space:
mode:
Diffstat (limited to 'application/modules')
-rw-r--r--application/modules/dev/controllers/BootosController.php1
-rw-r--r--application/modules/dev/controllers/ResourceController.php3
-rw-r--r--application/modules/fbgui/controllers/IndexController.php4
3 files changed, 4 insertions, 4 deletions
diff --git a/application/modules/dev/controllers/BootosController.php b/application/modules/dev/controllers/BootosController.php
index 1f31a69..5999624 100644
--- a/application/modules/dev/controllers/BootosController.php
+++ b/application/modules/dev/controllers/BootosController.php
@@ -51,6 +51,7 @@ class dev_BootosController extends Zend_Controller_Action
if ($createbootosForm->isValid($_POST)) {
$bootos = new Application_Model_BootOs($_POST);
+
$bootos->setMembershipID('1');
if($bootos->getConfigID() == '')
$bootos->setConfigID(NULL);
diff --git a/application/modules/dev/controllers/ResourceController.php b/application/modules/dev/controllers/ResourceController.php
index 03807c7..4e92ce3 100644
--- a/application/modules/dev/controllers/ResourceController.php
+++ b/application/modules/dev/controllers/ResourceController.php
@@ -111,8 +111,7 @@ class dev_ResourceController extends Zend_Controller_Action
$result = $bme->getKcl() . " " . $bme->getKclappend();
else
$result = $bme->getKclappend();
-
- $result .= " session=".$_SESSION['alphasessionID'];
+
echo $result;
diff --git a/application/modules/fbgui/controllers/IndexController.php b/application/modules/fbgui/controllers/IndexController.php
index 2dce0dd..bc94db5 100644
--- a/application/modules/fbgui/controllers/IndexController.php
+++ b/application/modules/fbgui/controllers/IndexController.php
@@ -28,10 +28,10 @@ class Fbgui_IndexController extends Zend_Controller_Action
$groupID = $bootiso->getGroupID();
}
elseif(isset($_POST['serialnumber'])){
- $result = array();
+
$results = $bootisomapper->findBy('serialnumber',$_POST['serialnumber']);
$bootiso->setOptions($results[0]);
- $bootiso->setID($result[0]['bootisoID']);
+ $bootiso->setID($results[0]['bootisoID']);
$groupID = $bootiso->getGroupID();
}