Merge pull request #1722 from tresbach/patch-1

Fix negative count
This commit is contained in:
Samuel Georges 2016-02-13 15:30:22 +11:00
commit 668ccf2588
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): ?>