[Phplib-trackers] [ phplib-Bugs-499079 ] inclusion of auto_init on new sessions
Brought to you by:
nhruby,
richardarcher
|
From: <no...@so...> - 2002-07-02 19:27:51
|
Bugs item #499079, was opened at 2002-01-03 14:16 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=403611&aid=499079&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Bahadir Yagan (bahadiryagan) Assigned to: Nobody/Anonymous (nobody) Summary: inclusion of auto_init on new sessions Initial Comment: After executing $sess->delete() on some page an recalling page_open(...), the auto_init file hadnt included. I changed the delete method to do so in session.inc: function delete() { $this->that->ac_delete($this->id, $this->name); $this->in="";//this extra line $this->put_id(); } ---------------------------------------------------------------------- >Comment By: nathan hruby (nhruby) Date: 2002-07-02 15:27 Message: Logged In: YES user_id=19736 What was the offending code that this problem arose? Did it look like: <?php page_open(...); something(); $sess->delete(); echo 'foo'; page_open(); ?> In that context I'm not sure if auto_init *should* be re-executed. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=403611&aid=499079&group_id=31885 |