aboutsummaryrefslogtreecommitdiff
path: root/app/view/templates/homeopt.php
diff options
context:
space:
mode:
authorvincent-peugnet <v.peugnet@free.fr>2020-01-29 21:51:20 +0100
committervincent-peugnet <v.peugnet@free.fr>2020-01-29 21:51:20 +0100
commitaaa5016ea6ec00137868fef0693e9ccdb2ca633d (patch)
treed91a9661d68ba68b33b0522fb51bc5dcb0fe24a9 /app/view/templates/homeopt.php
parent46ad69fce564ad5f935cbf3ff5b4ef8a41209075 (diff)
parent2211f5cbae94c09c03c95b4c4d010ddaf72738df (diff)
downloadwcms-aaa5016ea6ec00137868fef0693e9ccdb2ca633d.tar.gz
wcms-aaa5016ea6ec00137868fef0693e9ccdb2ca633d.zip
Merge branch 'implement-css-parser'
Diffstat (limited to 'app/view/templates/homeopt.php')
-rw-r--r--app/view/templates/homeopt.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/view/templates/homeopt.php b/app/view/templates/homeopt.php
index 7f42c8e..05f8d27 100644
--- a/app/view/templates/homeopt.php
+++ b/app/view/templates/homeopt.php
@@ -63,9 +63,9 @@
if (in_array($tagfilter, $opt->tagfilter())) {
- echo '<li><input type="checkbox" name="tagfilter[]" id="tag_' . $tagfilter . '" value="' . $tagfilter . '" checked /><label for="tag_' . $tagfilter . '">' . $tagfilter . ' (' . $count . ')</label></li>';
+ echo '<li><input type="checkbox" name="tagfilter[]" id="tag_' . $tagfilter . '" value="' . $tagfilter . '" checked /><label for="tag_' . $tagfilter . '">' . $tagfilter . ' <span class="counter tag_' . $tagfilter . '">' . $count . '</span></label></li>';
} else {
- echo '<li><input type="checkbox" name="tagfilter[]" id="tag_' . $tagfilter . '" value="' . $tagfilter . '" /><label for="tag_' . $tagfilter . '">' . $tagfilter . ' (' . $count . ')</label></li>';
+ echo '<li><input type="checkbox" name="tagfilter[]" id="tag_' . $tagfilter . '" value="' . $tagfilter . '" /><label for="tag_' . $tagfilter . '">' . $tagfilter . ' <span class="counter tag_' . $tagfilter . '">' . $count . '</span></label></li>';
}
}
if ($in = true || $out = true) {