summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-05-24 09:25:27 -0700
committerTim Graham <timograham@gmail.com>2013-05-24 09:25:27 -0700
commit92c9052addb73b7e73ea349b4244bdd4f0087ca0 (patch)
tree278b4f42ff1246f1e97d80d28a57e82fa7ff41d3
parentc4fb8326ddfd71440768d646b6acd68cd3d4d249 (diff)
parent81f454a32296ad27437eaf19acfcdad9a9c03fca (diff)
Merge pull request #1210 from alasdairnicol/jquery_cookie_plugin_link
Updated link to jQuery Cookie plugin site
-rw-r--r--docs/ref/contrib/csrf.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/contrib/csrf.txt b/docs/ref/contrib/csrf.txt
index 9e58548376..f8b3cf2646 100644
--- a/docs/ref/contrib/csrf.txt
+++ b/docs/ref/contrib/csrf.txt
@@ -120,7 +120,7 @@ Acquiring the token is straightforward:
var csrftoken = getCookie('csrftoken');
The above code could be simplified by using the `jQuery cookie plugin
-<http://plugins.jquery.com/project/Cookie>`_ to replace ``getCookie``:
+<http://plugins.jquery.com/cookie/>`_ to replace ``getCookie``:
.. code-block:: javascript