Forgot to remove debug() from a view

This commit is contained in:
Kyle Johnson 2013-09-24 09:12:42 -04:00
parent 2fa0d3a284
commit 9ccf5c72ce
1 changed files with 2 additions and 5 deletions

View File

@ -8,13 +8,10 @@
<?php foreach ($monitors as $monitor => $mon): ?>
<div class="col-md-4" id="Monitor_<?= $mon['Monitor']['Id']; ?>">
<div class="thumbnail">
<?php
debug($mon);
echo $this->Html->image($mon['img']['src'], array(
<?php echo $this->Html->image($mon['img']['src'], array(
'alt' => $mon['img']['alt'],
'id' => $mon['img']['id']
));
?>
)); ?>
<div class="caption">
<h4><?php echo $this->Html->link($mon['Monitor']['Name'],array('controller' => 'monitors', 'action' => 'view', $mon['Monitor']['Id'])); ?></h4>
<p><?php echo $this->Html->link($mon['Monitor']['Function'], array('action' => 'edit', $mon['Monitor']['Id'])); ?></p>