Skip to content

Commit

Permalink
Add new lines between phone number #879
Browse files Browse the repository at this point in the history
Also change <strong> tagging on phone numbers to match other ways to report
  • Loading branch information
rjmackay committed Oct 10, 2012
1 parent e59b592 commit 1097b5f
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions themes/default/views/main/layout.php
Original file line number Diff line number Diff line change
Expand Up @@ -166,12 +166,9 @@
<!-- Phone -->
<?php if ( ! empty($phone_array)): ?>
<div style="margin-bottom:10px;">
<?php echo Kohana::lang('ui_main.report_option_1'); ?>
<strong><?php echo Kohana::lang('ui_main.report_option_1'); ?></strong><br />
<?php foreach ($phone_array as $phone): ?>
<strong><?php echo $phone; ?></strong>
<?php if ($phone != end($phone_array)): ?>
<br/>
<?php endif; ?>
<?php echo $phone; ?><br />
<?php endforeach; ?>
</div>
<?php endif; ?>
Expand Down

0 comments on commit 1097b5f

Please sign in to comment.