diff options
author | Bruno Sarlo <bruno@bruno-laptop.(none)> | 2009-07-18 18:12:26 -0300 |
---|---|---|
committer | Bruno Sarlo <bruno@bruno-laptop.(none)> | 2009-07-18 18:12:26 -0300 |
commit | f357088a724926dde106b43a7cf9a0beb7758f8d (patch) | |
tree | a3198af8f0540bc81233b5ddcc2343dfe338a768 /templates | |
parent | b687cd1100134fb822fd683baf566bd11a3697bc (diff) | |
download | askbot-f357088a724926dde106b43a7cf9a0beb7758f8d.tar.gz askbot-f357088a724926dde106b43a7cf9a0beb7758f8d.tar.bz2 askbot-f357088a724926dde106b43a7cf9a0beb7758f8d.zip |
fixed logout bug when logout url translated.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/logout.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/logout.html b/templates/logout.html index b13e5e25..6270924a 100644 --- a/templates/logout.html +++ b/templates/logout.html @@ -7,7 +7,7 @@ {% block forejs %} <script type="text/javascript"> $().ready(function(){ - $('#btLogout').bind('click', function(){ window.location.href='/account/signout/?next={{ next }}'; }); + $('#btLogout').bind('click', function(){ window.location.href='{% url user_signout %}?next={{ next }}'; }); }); </script> |