diff options
| author | 2023-03-24 23:44:05 +0100 | |
|---|---|---|
| committer | 2023-03-24 23:44:05 +0100 | |
| commit | df24fa2207f56909084c613495b6f235b351c640 (patch) | |
| tree | 12148c7300d8c1229fb558af6a0e646658e96f65 /p/scripts | |
| parent | e750448f5b32982170f81ca045f9f7e8dc8eed6f (diff) | |
Fix warning when tagging entries (#5221)
```
File not found: `/views/tag/tagEntry.phtml`
```
Because we had no view file for this call.
Diffstat (limited to 'p/scripts')
| -rw-r--r-- | p/scripts/main.js | 2 |
1 files changed, 1 insertions, 1 deletions
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; |
