Changeset 1723
- Timestamp:
- 08/30/08 17:50:30 (3 months ago)
- Location:
- branches/3.4
- Files:
-
- 2 modified
-
docs/CHANGELOG (modified) (1 diff)
-
lib/init.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/3.4/docs/CHANGELOG
r1718 r1723 5 5 -------------------------------------------------------------------------- 6 6 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 7 9 - Add Links to RSS feeds and change default to use_rss=true 8 10 - Fixed Dynamic Random/Related URLs with players that always send -
branches/3.4/lib/init.php
r1711 r1723 204 204 $auth['access'] = '100'; 205 205 $auth['offset_limit'] = 50; 206 if (!vauth:: check_session()) {206 if (!vauth::session_exists('interface',$_COOKIE[Config::get('session_name')])) { 207 207 vauth::create_cookie(); 208 208 vauth::session_create($auth); 209 209 } 210 vauth::check_session(); 210 211 $GLOBALS['user'] = new User(-1); 211 212 $GLOBALS['user']->fullname = 'Ampache User';
