Changeset 1117 for trunk/index.php


Ignore:
Timestamp:
Apr 1, 2006, 3:24:21 AM (18 years ago)
Author:
rvelices
Message:

fix: allow adviser message was not allowing cookies to be sent

fix: cookie deletion on logout uses ini_get (on some systems
ini_set(cookie_path) is ignored)

bug 322: locked category is visible to all the users/groups that have been
assigned the permissions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/index.php

    r1113 r1117  
    4545  session_unset();
    4646  session_destroy();
    47   setcookie(session_name(),'',0, cookie_path() );
     47  setcookie(session_name(),'',0, ini_get('session.cookie_path') );
    4848  redirect( make_index_url() );
    4949}
Note: See TracChangeset for help on using the changeset viewer.