Package home | Report new bug | New search | Development Roadmap Status: Open | Feedback | All | Closed Since Version 1.0.10

Bug #3443 Jump action ads SID also when session.use_only_cookies
Submitted: 2005-02-12 13:21 UTC
From: jeroenl at zwolnet dot com Assigned: avb
Status: Closed Package: HTML_QuickForm_Controller
PHP Version: 4.3.10 OS:
Roadmaps: (Not assigned)    
Subscription  


 [2005-02-12 13:21 UTC] jeroenl at zwolnet dot com
Description: ------------ The Next action also adds the SID to the url when session.use_only_cookies is configured. This is not wanted. Solution is to check session.use_only_cookies, so iso.: $url = $action . ... . ((!defined('SID') || '' == SID)? '': '&' . SID); Do something like: $url = $action . (false === strpos($action, '?')? '?': '&') . $current->getButtonName('display') . '=true'; if (!ini_get('session.use_only_cookies')) $url .= ((!defined('SID') || '' == SID)? '': '&' . SID); Greetings, Jeroen.

Comments

 [2005-11-04 19:17 UTC] User who submitted this comment has not confirmed identity
If you submitted this note, check your email.If you do not have a message, click here to re-send
MANUAL CONFIRMATION IS NOT POSSIBLE.  Write a message to pear-dev@lists.php.net
to request the confirmation link.  All bugs/comments/patches associated with this

email address will be deleted within 48 hours if the account request is not confirmed!