Fixed html rendering section drop-down on update form of INterments

Fixes #5
This commit is contained in:
Cliff Ingham 2014-08-14 10:37:38 -04:00
parent 2538a63453
commit 8b4eacd1e1
1 changed files with 5 additions and 4 deletions

View File

@ -1,12 +1,13 @@
<?php <?php
/** /**
* @copyright 2009 City of Bloomington, Indiana * @copyright 2009-2014 City of Bloomington, Indiana
* @license http://www.gnu.org/licenses/agpl.txt GNU/AGPL, see LICENSE.txt * @license http://www.gnu.org/licenses/agpl.txt GNU/AGPL, see LICENSE.txt
* @author Cliff Ingham <inghamn@bloomington.in.gov> * @author Cliff Ingham <inghamn@bloomington.in.gov>
* @param Interment $this->interment * @param Interment $this->interment
* @param string $this->return_url * @param string $this->return_url
*/ */
$return_url = $this->return_url ? $this->return_url : BASE_URL.'/interments'; $return_url = $this->return_url ? $this->return_url : BASE_URL.'/interments';
?> ?>
<h2>Update Interment</h2> <h2>Update Interment</h2>
<form method="post" action="<?php echo BASE_URL; ?>/interments/updateInterment.php"> <form method="post" action="<?php echo BASE_URL; ?>/interments/updateInterment.php">
@ -37,13 +38,13 @@ $return_url = $this->return_url ? $this->return_url : BASE_URL.'/interments';
<td><select name="interment[section_id]" id="interment-section_id"> <td><select name="interment[section_id]" id="interment-section_id">
<option></option> <option></option>
<?php <?php
if ($this->interment->getSection_id()) { if ($this->interment->getCemetery_id()) {
foreach ($this->interment->getCemetery()->getSections() as $section) { foreach ($this->interment->getCemetery()->getSections() as $section) {
$name = $section->getName() ? View::escape($section->getName()) : View::escape($section->getCode()); $code = View::escape($section->getCode());
$selected = $section->getId()==$this->interment->getSection_id() $selected = $section->getId()==$this->interment->getSection_id()
? 'selected="selected"' ? 'selected="selected"'
: ''; : '';
echo "<option value=\"{$section->getId()}\" $selected>$name</option>"; echo "<option value=\"{$section->getId()}\" $selected>$code</option>";
} }
} }
?> ?>