summaryrefslogtreecommitdiff
path: root/read.html
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2017-02-26 17:32:11 +0300
committerAndrew Dolgov <[email protected]>2017-02-26 17:32:11 +0300
commite3c6ca80943ef45079ab0557e9b7a985146d21eb (patch)
tree57f50e22b5ef0c6f60e171531fbc406d8533b1b7 /read.html
parentfa59db273ba422e541df400d79b57546fb9f6544 (diff)
use post request for lastread in dialog
Diffstat (limited to 'read.html')
-rw-r--r--read.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/read.html b/read.html
index c7026ba..4c4a3d7 100644
--- a/read.html
+++ b/read.html
@@ -298,7 +298,7 @@
$("select.font_family").val(font);
- $.get("backend.php", { op: "getlastread", id: $.urlParam("id") }, function(data) {
+ $.post("backend.php", { op: "getlastread", id: $.urlParam("id") }, function(data) {
$(".lastread_input").val(data.page);
});