From df24fa2207f56909084c613495b6f235b351c640 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Fri, 24 Mar 2023 23:44:05 +0100 Subject: Fix warning when tagging entries (#5221) ``` File not found: `/views/tag/tagEntry.phtml` ``` Because we had no view file for this call. --- p/scripts/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'p/scripts') diff --git a/p/scripts/main.js b/p/scripts/main.js index 28886180e..521ed263b 100644 --- a/p/scripts/main.js +++ b/p/scripts/main.js @@ -1188,7 +1188,7 @@ function init_stream(stream) { checkboxTag.disabled = true; const req = new XMLHttpRequest(); - req.open('POST', './?c=tag&a=tagEntry', true); + req.open('POST', './?c=tag&a=tagEntry&ajax=1', true); req.responseType = 'json'; req.onerror = function (e) { checkboxTag.checked = !isChecked; -- cgit v1.2.3