Changeset 845 for trunk/Modules/Translation/TranslationList.php
- Timestamp:
- Jan 14, 2016, 11:02:40 PM (9 years ago)
- File:
-
- 1 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();
Note:
See TracChangeset
for help on using the changeset viewer.