Compare commits

...

2 Commits

Author SHA1 Message Date
eec380340f Merge pull request 'Fix tags page' (#4410) from fix-tags into master
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #4410
2024-08-28 09:38:33 +00:00
6c92c875b5
Fix tags page
All checks were successful
continuous-integration/drone/pr Build is passing
2024-08-28 11:34:53 +02:00

View File

@ -124,7 +124,7 @@ declare -A filecount
for section in "news" "events"; do for section in "news" "events"; do
for tag in $(ls "${tagmaps}"); do for tag in $(ls "${tagmaps}"); do
filecount["${tag}:${section}"]=$(grep "^${section}/" "${tagmaps}/${tag}" | wc --lines || true) filecount["${tag}:${section}"]=$(grep "^fsfe.org/${section}/" "${tagmaps}/${tag}" | wc --lines || true)
done done
done done