Skip to content

Commit

Permalink
Fix caching issues
Browse files Browse the repository at this point in the history
  • Loading branch information
bilde2910 committed Feb 13, 2019
1 parent 55bc487 commit 62e4b2d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions includes/admin/pois.php
Original file line number Diff line number Diff line change
Expand Up @@ -395,15 +395,15 @@ class="button-submit"
cut down on the number of fields that are submitted to the server to avoid
hitting the server-side `max_input_vars` limit of 1000.
-->
<script src="./js/limit-inputs.js"></script>
<script src="./js/limit-inputs.js?v=1"></script>

<!--
This page contains a potentially large table, so we should enable sorting
and pagination for it.
-->
<script src="./js/table-utils.js"></script>
<script src="./js/table-utils.js?v=2"></script>

<!--
/admin/js/pois.js contains additional functionality for this page.
-->
<script src="./js/pois.js?v=2"></script>
<script src="./js/pois.js?v=3"></script>
4 changes: 2 additions & 2 deletions includes/admin/users.php
Original file line number Diff line number Diff line change
Expand Up @@ -309,12 +309,12 @@ class="button-submit"
cut down on the number of fields that are submitted to the server to avoid
hitting the server-side `max_input_vars` limit of 1000.
-->
<script src="./js/limit-inputs.js"></script>
<script src="./js/limit-inputs.js?v=1"></script>
<!--
This page contains a potentially large table, so we should enable sorting
for it.
-->
<script src="./js/table-utils.js"></script>
<script src="./js/table-utils.js?v=2"></script>
<!--
/admin/js/users.js contains additional functionality for this page.
-->
Expand Down

0 comments on commit 62e4b2d

Please sign in to comment.