Changeset 630 for trunk/includes
- Timestamp:
- Dec 8, 2013, 6:43:40 PM (11 years ago)
- Location:
- trunk/includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/Version.php
r629 r630 6 6 // and system will need database update. 7 7 8 $Revision = 6 29; // Subversion revision8 $Revision = 630; // Subversion revision 9 9 $DatabaseRevision = 610; // Database structure revision 10 10 $ReleaseTime = '2013-12-04'; -
trunk/includes/system.php
r622 r630 45 45 ); 46 46 $Code = $Config['Web']['Locale']; 47 if(array_key_exists('Locale', $_SESSION)) $Code = $_SESSION['Locale']; 48 if(array_key_exists('locale', $_GET)) $Code = $_GET['locale']; 47 if (isset($_SESSION)) 48 if(array_key_exists('Locale', $_SESSION)) $Code = $_SESSION['Locale']; 49 if (isset($_GET)) 50 if(array_key_exists('locale', $_GET)) $Code = $_GET['locale']; 51 49 52 //echo(phpinfo()); 50 53 if(!array_key_exists($Code, $LocaleManager->Available)) $Code = 'en';
Note:
See TracChangeset
for help on using the changeset viewer.