mirror of
https://github.com/sbrl/Pepperminty-Wiki.git
synced 2024-11-22 04:23:01 +00:00
Bugfix: Don't crash when updating stats if no pages have any tags yet
This commit is contained in:
parent
c177b66b42
commit
f3d797695e
2 changed files with 2 additions and 1 deletions
|
@ -8,6 +8,7 @@ This file holds the changelog for Pepperminty Wiki. This is the master list of t
|
|||
### Fixed
|
||||
- Fixed double-escaping of rendered HTML when nesting templates
|
||||
- Squashed a warning if the search index doesn't exist yet
|
||||
- Fixed the stats updater if no pages in the system have tags yet
|
||||
|
||||
### Added
|
||||
- [Module API] Added new extra data system. See `parser-parsedown` and `page-edit` for an example.
|
||||
|
|
|
@ -175,7 +175,7 @@ register_module([
|
|||
$tag_counts[] = count($page_entry->tags ?? []);
|
||||
|
||||
$result = new stdClass(); // value, state, completed
|
||||
$result->value = round(array_sum($tag_counts) / count($tag_counts), 3);
|
||||
$result->value = empty($tag_counts) ? -1 : round(array_sum($tag_counts) / count($tag_counts), 3);
|
||||
$result->completed = true;
|
||||
return $result;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue