1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-30 04:01:27 +00:00

implement sharing of arbitrary stuff using bookmarklet and API call, bump API version

This commit is contained in:
Andrew Dolgov
2012-09-09 16:05:59 +04:00
parent b8386ad3d1
commit 8361e72478
6 changed files with 145 additions and 4 deletions

View File

@@ -2,7 +2,7 @@
class RPC extends Handler_Protected {
function csrf_ignore($method) {
$csrf_ignored = array("sanitycheck", "buttonplugin", "exportget");
$csrf_ignored = array("sanitycheck", "buttonplugin", "exportget", "sharepopup");
return array_search($method, $csrf_ignored) !== false;
}