Changeset 1722
- Timestamp:
- 08/30/08 17:50:26 (3 months ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
docs/CHANGELOG (modified) (1 diff)
-
lib/init.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/docs/CHANGELOG
r1719 r1722 5 5 -------------------------------------------------------------------------- 6 6 v.3.5-Alpha1 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 set default to TRUE in config.dist 8 10 - Fixed Dynamic Random/Related URLs with players that always send -
trunk/lib/init.php
r1702 r1722 86 86 87 87 /** This is the version.... fluf nothing more... **/ 88 $results['version'] = '3.5-Alpha1 (Build 00 2)';88 $results['version'] = '3.5-Alpha1 (Build 003)'; 89 89 $results['int_config_version'] = '7'; 90 90 … … 207 207 $auth['access'] = '100'; 208 208 $auth['offset_limit'] = 50; 209 if (!vauth:: check_session()) {209 if (!vauth::session_exists('interface',$_COOKIE[Config::get('session_name')])) { 210 210 vauth::create_cookie(); 211 211 vauth::session_create($auth); 212 212 } 213 vauth::check_session(); 213 214 $GLOBALS['user'] = new User(-1); 214 215 $GLOBALS['user']->fullname = 'Ampache User';
