Skip to content

Commit 080c2e0

Browse files
paulfioravantimmistakes
authored andcommittedOct 23, 2018
Revert caching for comments and analytics. Fixes mmistakes#1905 (mmistakes#1907)
1 parent 90b3325 commit 080c2e0

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed
 

‎CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818
- Fix Lunr search index merging words. [#1883](https://github.com/mmistakes/minimal-mistakes/issues/1883)
1919
- Properly apply `relative_url` filter to internal links in header overlay `actions` array.
20+
- Revert cached includes (`include_cached`) for comment and analytics providers. [#1905](https://github.com/mmistakes/minimal-mistakes/issues/1905)
2021

2122
## [4.13.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.13.0)
2223

‎_includes/scripts.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@
2424
{%- endcase -%}
2525
{% endif %}
2626

27-
{% include_cached analytics.html %}
28-
{% include_cached /comments-providers/scripts.html %}
27+
{% include analytics.html %}
28+
{% include /comments-providers/scripts.html %}

‎_layouts/default.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
</footer>
3737
</div>
3838

39-
{% include_cached scripts.html %}
39+
{% include scripts.html %}
4040

4141
</body>
42-
</html>
42+
</html>

0 commit comments

Comments
 (0)
Please sign in to comment.