Drop the `inline' view property, as it's not used anywhere

This commit is contained in:
Johannes Meyer 2015-04-15 15:15:03 +02:00
parent 17262ae2bd
commit 5e92171ab7
2 changed files with 2 additions and 8 deletions

View File

@ -22,10 +22,6 @@ class Monitoring_ListController extends Controller
{ {
$this->createTabs(); $this->createTabs();
$this->view->compact = $this->_request->getParam('view') === 'compact'; $this->view->compact = $this->_request->getParam('view') === 'compact';
if ($this->_request->getParam('view') === 'inline') {
$this->view->compact = true;
$this->view->inline = true;
}
} }
/** /**

View File

@ -59,8 +59,7 @@
<div class="alertsummary-flex"> <div class="alertsummary-flex">
<?= $this->partial('list/notifications.phtml', array( <?= $this->partial('list/notifications.phtml', array(
'notifications' => $this->recentAlerts, 'notifications' => $this->recentAlerts,
'compact' => true, 'compact' => true
'inline' => true
)); ?> )); ?>
</div> </div>
</div> </div>
@ -71,8 +70,7 @@
<div class="alertsummary-flex"> <div class="alertsummary-flex">
<?= $this->partial('list/notifications.phtml', array( <?= $this->partial('list/notifications.phtml', array(
'notifications' => $this->notifications, 'notifications' => $this->notifications,
'compact' => true, 'compact' => true
'inline' => true
)); ?> )); ?>
</div> </div>
</div> </div>