Changeset 846 for trunk/Modules/Translation/TranslationList.php
- Timestamp:
- Jan 15, 2016, 10:24:05 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Translation/TranslationList.php
r845 r846 59 59 if($Filter['Group'] != 0) 60 60 { 61 if(isset($TranslationTree[$Filter['Group']]) == false) ErrorMessage('Překladová skupina dle zadaného Id neexistuje.'); 61 if(isset($TranslationTree[$Filter['Group']]) == false) 62 ErrorMessage('Překladová skupina dle zadaného Id neexistuje.'); 62 63 $Table = $TranslationTree[$Filter['Group']]['TablePrefix']; 63 64 } … … 77 78 if($Group['Id'] == $Filter['Group']) $Selected = ' selected="selected"'; 78 79 else $Selected = ''; 79 $Output .= '<option value="'.$Group['Id'].'"'.$Selected.'>'. $Group['Name'].'</option>';80 $Output .= '<option value="'.$Group['Id'].'"'.$Selected.'>'.T($Group['Name']).'</option>'; 80 81 } 81 82 $Output .= '</select></td>'; … … 414 415 while($Group = $DbResult->fetch_assoc()) 415 416 { 416 $Output .= '<tr><td><a href="'.$this->System->Link('/TranslationList.php?group='.$Group['Id'].'&action=filter').'">'. $Group['Name'].'</a></td>'.417 $Output .= '<tr><td><a href="'.$this->System->Link('/TranslationList.php?group='.$Group['Id'].'&action=filter').'">'.T($Group['Name']).'</a></td>'. 417 418 '<td>'.$Group['SourceType'].'</td><td>'; 418 419 if($Group['MangosTable'] != '') $Output .= $Group['MangosTable'].'.sql '; … … 503 504 if($this->System->User->Licence(LICENCE_ADMIN)) 504 505 { 505 $DbResult = $this->System->Database->select('Group', '*', ' Id='.$_GET['id']);506 $DbResult = $this->System->Database->select('Group', '*', '`Id`='.$_GET['id']); 506 507 if($DbResult->num_rows == 1) 507 508 {
Note:
See TracChangeset
for help on using the changeset viewer.