Changeset 1368
- Timestamp:
- 05/15/06 12:44:36 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/data/generator/sfPropelAdmin/default/template/actions/actions.class.php
r1353 r1368 155 155 if (!$this->getRequest()->hasErrors() && $this->getRequest()->getFileSize('<?php echo $this->getSingularName() ?>[<?php echo $name ?>]')) 156 156 { 157 <?php else : ?>157 <?php elseif ($type != CreoleTypes::BOOLEAN): ?> 158 158 if (isset($<?php echo $this->getSingularName() ?>['<?php echo $name ?>'])) 159 159 { … … 179 179 } 180 180 <?php elseif ($type == CreoleTypes::BOOLEAN): ?> 181 $this-><?php echo $this->getSingularName() ?>->set<?php echo $column->getPhpName() ?>(isset($<?php echo $this->getSingularName() ?>['<?php echo $name ?>']) ? $<?php echo $this->getSingularName() ?>['<?php echo $name ?>'] : 0);181 $this-><?php echo $this->getSingularName() ?>->set<?php echo $column->getPhpName() ?>(isset($<?php echo $this->getSingularName() ?>['<?php echo $name ?>']) ? $<?php echo $this->getSingularName() ?>['<?php echo $name ?>'] : 0); 182 182 <?php else: ?> 183 183 $this-><?php echo $this->getSingularName() ?>->set<?php echo $column->getPhpName() ?>($<?php echo $this->getSingularName() ?>['<?php echo $name ?>']); 184 184 <?php endif; ?> 185 } 185 <?php if ($type != CreoleTypes::BOOLEAN): ?> 186 } 187 <?php endif; ?> 186 188 <?php if ($credentials): ?> 187 189 } trunk/data/web/sf/css/sf_admin/main.css
r1366 r1368 44 44 margin: 8px 0; 45 45 padding: 3px; 46 padding-left: 5px;46 padding-left: 0px; 47 47 color: #555; 48 48 font-family: "Trebuchet MS", Arial, Verdana, sans-serif;