summaryrefslogtreecommitdiff
path: root/classes/rpc.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-09-09 16:05:59 +0400
committerAndrew Dolgov <[email protected]>2012-09-09 16:05:59 +0400
commit8361e724785767d57cd28be7ceaea7ad81fae0a2 (patch)
treebd19895c0778b8f0108cec561cb80fe911512a7d /classes/rpc.php
parentb8386ad3d14dc0518e1289d3987c79c3922dae2a (diff)
implement sharing of arbitrary stuff using bookmarklet and API call, bump API version
Diffstat (limited to 'classes/rpc.php')
-rw-r--r--classes/rpc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/rpc.php b/classes/rpc.php
index db34a6c9d..733649139 100644
--- a/classes/rpc.php
+++ b/classes/rpc.php
@@ -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;
}