Fix page count

Because there is a directory "error" the page count is wrong. This works, but I'm not sure, if it's the right syntax ("$dbPages->count()-1").
This commit is contained in:
clickwork-git 2015-10-31 13:43:46 +01:00
parent 10d4db844b
commit 769b34e9d6
1 changed files with 2 additions and 2 deletions

View File

@ -73,7 +73,7 @@
</tr> </tr>
<tr> <tr>
<td><?php $Language->p('Pages') ?></td> <td><?php $Language->p('Pages') ?></td>
<td><?php echo $dbPages->count() ?></td> <td><?php echo $dbPages->count()-1 ?></td>
</tr> </tr>
<tr> <tr>
<td><?php $Language->p('Users') ?></td> <td><?php $Language->p('Users') ?></td>
@ -128,4 +128,4 @@
</div> </div>
</div> </div>