Changeset 845


Ignore:
Timestamp:
Jan 14, 2016, 11:02:40 PM (8 years ago)
Author:
chronos
Message:
  • Fixed: Do not translate location of downloadable files.
  • Fixed: Link to translation groups from translation source list.
Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Translation/TranslationList.php

    r843 r845  
    414414   while($Group = $DbResult->fetch_assoc())
    415415   {
    416      $Output .= '<tr><td><a href="?group='.$Group['Id'].'&amp;action=filter">'.$Group['Name'].'</a></td>'.
     416     $Output .= '<tr><td><a href="'.$this->System->Link('/TranslationList.php?group='.$Group['Id'].'&amp;action=filter').'">'.$Group['Name'].'</a></td>'.
    417417       '<td>'.$Group['SourceType'].'</td><td>';
    418418     if($Group['MangosTable'] != '') $Output .= $Group['MangosTable'].'.sql ';
     
    521521    $this->Title = T('Translation groups');
    522522    $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();
    525524    else if($Action == 'groupdelete') $Output = $this->ShowGroupDelete();
    526525    else if($Action == 'groupaddfinish') $Output = $this->ShowGroupAddFinish();
  • trunk/includes/Version.php

    r844 r845  
    66// and system will need database update.
    77
    8 $Revision = 844; // Subversion revision
     8$Revision = 845; // Subversion revision
    99$DatabaseRevision = 811; // Database structure revision
    1010$ReleaseTime = '2016-01-14';
  • trunk/includes/system.php

    r844 r845  
    4545    );
    4646    $GlobalLocaleManager = $this->LocaleManager;
    47     $this->LinkLocaleExceptions = array('images', 'style', 'tmp');
     47    $this->LinkLocaleExceptions = array('images', 'style', 'tmp', 'files');
    4848
    4949    $this->PathItems = ProcessURL();
Note: See TracChangeset for help on using the changeset viewer.