Revision e2b9e173
Von Sven Schöling vor etwa 15 Jahren hinzugefügt
bin/mozilla/rp.pl | ||
---|---|---|
156 | 156 |
$form->all_departments(\%myconfig); |
157 | 157 |
if (@{ $form->{all_departments} || [] }) { |
158 | 158 |
$form->{selectdepartment} = "<option>\n"; |
159 |
map { $form->{selectdepartment} .= "<option>$_->{description}--$_->{id}\n" } @{ $form->{all_departments} }; |
|
159 |
map { $form->{selectdepartment} .= "<option>$_->{description}--$_->{id}\n" } @{ $form->{all_departments} || [] };
|
|
160 | 160 |
} |
161 | 161 |
|
162 | 162 |
my $department = qq| |
Auch abrufbar als: Unified diff
Alle Vorkommen von all_departments abgesichert.