Indenting changes

This commit is contained in:
Karl Cordes 2012-11-17 14:36:36 +11:00
parent 7fcf2eafca
commit 743ce3cec5
2 changed files with 609 additions and 608 deletions

File diff suppressed because it is too large Load diff

View file

@ -138,13 +138,14 @@
<div class="related"> <div class="related">
<h3><?php if($enquiry['Enquiry']['quote_count'] > 1) { <h3><?php if($enquiry['Enquiry']['quote_count'] > 1) {
echo $enquiry['Enquiry']['quote_count'].' Quotes for this Enquiry'; $word = ' Quotes';
} }
else { else {
echo $enquiry['Enquiry']['quote_count'].' Quote for this Enquiry'; $word = ' Quote';
}
}?> echo $enquiry['Enquiry']['quote_count'].$word;
?>
</h3> </h3>
<? echo $this->element('quote_table', $quotes); <? echo $this->element('quote_table', $quotes);