Changeset 845
- Timestamp:
- Jan 14, 2016, 11:02:40 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Translation/TranslationList.php
r843 r845 414 414 while($Group = $DbResult->fetch_assoc()) 415 415 { 416 $Output .= '<tr><td><a href=" ?group='.$Group['Id'].'&action=filter">'.$Group['Name'].'</a></td>'.416 $Output .= '<tr><td><a href="'.$this->System->Link('/TranslationList.php?group='.$Group['Id'].'&action=filter').'">'.$Group['Name'].'</a></td>'. 417 417 '<td>'.$Group['SourceType'].'</td><td>'; 418 418 if($Group['MangosTable'] != '') $Output .= $Group['MangosTable'].'.sql '; … … 521 521 $this->Title = T('Translation groups'); 522 522 $Action = GetParameter('action', ''); 523 if($Action == 'filter') $Output = $this->ShowMenu(); 524 else if($Action == 'groupadd') $Output = $this->ShowGroupAdd(); 523 if($Action == 'groupadd') $Output = $this->ShowGroupAdd(); 525 524 else if($Action == 'groupdelete') $Output = $this->ShowGroupDelete(); 526 525 else if($Action == 'groupaddfinish') $Output = $this->ShowGroupAddFinish(); -
trunk/includes/Version.php
r844 r845 6 6 // and system will need database update. 7 7 8 $Revision = 84 4; // Subversion revision8 $Revision = 845; // Subversion revision 9 9 $DatabaseRevision = 811; // Database structure revision 10 10 $ReleaseTime = '2016-01-14'; -
trunk/includes/system.php
r844 r845 45 45 ); 46 46 $GlobalLocaleManager = $this->LocaleManager; 47 $this->LinkLocaleExceptions = array('images', 'style', 'tmp' );47 $this->LinkLocaleExceptions = array('images', 'style', 'tmp', 'files'); 48 48 49 49 $this->PathItems = ProcessURL();
Note:
See TracChangeset
for help on using the changeset viewer.