summaryrefslogtreecommitdiffstats
path: root/templates/part.showall.php
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-03-25 23:23:56 +0100
committerBernhard Posselt <nukeawhale@gmail.com>2013-03-25 23:24:47 +0100
commit866f5eef01f95c692061acac7a6946db3949e61b (patch)
tree2ad83bab23b4d0201ea7373683c11eeb08ffb90d /templates/part.showall.php
parent18680c8c448bc296b649c7eaa745468c301bff0f (diff)
fix bad setter usage
Diffstat (limited to 'templates/part.showall.php')
-rw-r--r--templates/part.showall.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/part.showall.php b/templates/part.showall.php
index 3bbd719b8..61f9cc11d 100644
--- a/templates/part.showall.php
+++ b/templates/part.showall.php
@@ -1,7 +1,7 @@
<li ui-if="!isShowAll()" class="show-all">
- <a ng-click="setShowAll(true)" href="#"><?php p($l->t('Show all')); ?></a>
+ <a ng-click="setShowAll(true)" href="#"><?php p($l->t('Show all')); ?></a>
</li>
-<li ui-if="istShowAll()" class="show-all">
- <a ng-click="setShowAll(false)" href="#"><?php p($l->t('Show only unread')); ?></a>
+<li ui-if="isShowAll()" class="show-all">
+ <a ng-click="setShowAll(false)" href="#"><?php p($l->t('Show only unread')); ?></a>
</li>