Changeset 1723

Show
Ignore:
Timestamp:
08/30/08 17:50:30 (3 months ago)
Author:
vollmerk
Message:

sync to branch

Location:
branches/3.4
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • branches/3.4/docs/CHANGELOG

    r1718 r1723  
    55-------------------------------------------------------------------------- 
    66  v.3.4.3  
     7        - Fixed use_auth = false not correctly re-creating the session if 
     8                you had just switched from use_auth = true 
    79        - Add Links to RSS feeds and change default to use_rss=true 
    810        - Fixed Dynamic Random/Related URLs with players that always send 
  • branches/3.4/lib/init.php

    r1711 r1723  
    204204        $auth['access'] = '100'; 
    205205        $auth['offset_limit'] = 50; 
    206         if (!vauth::check_session()) {  
     206        if (!vauth::session_exists('interface',$_COOKIE[Config::get('session_name')])) {  
    207207                vauth::create_cookie();  
    208208                vauth::session_create($auth);  
    209209        } 
     210        vauth::check_session();  
    210211        $GLOBALS['user']                = new User(-1); 
    211212        $GLOBALS['user']->fullname      = 'Ampache User';