diff options
author | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2011-01-07 04:32:41 +0000 |
---|---|---|
committer | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2011-01-07 04:32:41 +0000 |
commit | bd31568ed93b27e9e3dcc6a484b33808a21f7ad9 (patch) | |
tree | b99c9f7cd4ec69afa025f4784a407d2e8773367e /sca-cpp/trunk/samples/store-python | |
parent | 6860b985ae504a1375ee3dfadc1f5a59fe198bac (diff) |
Fix incorrect cookie name in sample logout pages.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1056189 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-cpp/trunk/samples/store-python')
-rw-r--r-- | sca-cpp/trunk/samples/store-python/htdocs/logout/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sca-cpp/trunk/samples/store-python/htdocs/logout/index.html b/sca-cpp/trunk/samples/store-python/htdocs/logout/index.html index 1ac6e39a1c..02a92d1b31 100644 --- a/sca-cpp/trunk/samples/store-python/htdocs/logout/index.html +++ b/sca-cpp/trunk/samples/store-python/htdocs/logout/index.html @@ -23,7 +23,7 @@ <form name="signout" action="/login" method="GET"> <script type="text/javascript"> function submitSignout() { - document.cookie = 'TuscanyFormAuth=;expires=' + new Date(1970,01,01).toGMTString() + ';path=/;secure=TRUE'; + document.cookie = 'TuscanyOpenAuth=;expires=' + new Date(1970,01,01).toGMTString() + ';path=/;secure=TRUE'; document.signout.submit(); return true; } |