Fix negative count

This commit is contained in:
Amanda Tresbach 2016-01-24 14:23:58 -02:00
parent af4f42e208
commit adf42896da
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@
<h4><?= e(trans('system::lang.updates.plugins')) ?></h4>
<p><?= $pluginsCount ?></p>
<p class="description">
<?= e(trans('system::lang.updates.disabled')) ?>: <?= $pluginsActiveCount - $pluginsCount ?>
<?= e(trans('system::lang.updates.disabled')) ?>: <?= $pluginsCount - $pluginsActiveCount ?>
</p>
</div>
<?php if ($coreBuild): ?>