summaryrefslogtreecommitdiffstats
path: root/application/forms/PoolClient.php
diff options
context:
space:
mode:
authorSimon2011-03-11 10:00:40 +0100
committerSimon2011-03-11 10:00:40 +0100
commitabda64d32457744695f91a20feafde3431f9e9e2 (patch)
tree3ceac1af1fb7ebd2a1c8fcfce278d3ded9f3d1e4 /application/forms/PoolClient.php
parentFilterController fixes (diff)
downloadpbs2-abda64d32457744695f91a20feafde3431f9e9e2.tar.gz
pbs2-abda64d32457744695f91a20feafde3431f9e9e2.tar.xz
pbs2-abda64d32457744695f91a20feafde3431f9e9e2.zip
AddClientToPool über Formular gefixxt, Buttonbeschriftungen anhand der Action beschriftet
Diffstat (limited to 'application/forms/PoolClient.php')
-rw-r--r--application/forms/PoolClient.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/application/forms/PoolClient.php b/application/forms/PoolClient.php
index 7bacae0..0c4ef6a 100644
--- a/application/forms/PoolClient.php
+++ b/application/forms/PoolClient.php
@@ -11,6 +11,7 @@ class Application_Form_PoolClient extends Zend_Form
$clientfield = $this->createElement('select','clientID');
$clientfield ->setLabel('Client:');
+ print_a($this->clients);
foreach($this->clients as $c){
$clientfield->addMultiOption($c['clientID'],$c['macadress']." - ".$c['hardwarehash']);
}