Changeset 588 for trunk/Modules/Dictionary/Dictionary.php
- Timestamp:
- Nov 18, 2013, 10:15:42 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Dictionary/Dictionary.php
r586 r588 31 31 { 32 32 33 function WriteTranslatNames($Text, $mode)33 function WriteTranslatNames($Text, $mode) 34 34 { 35 35 $Output = ''; … … 60 60 { 61 61 $Output .= '<tr><td>'.$Line[2].'</td>'; 62 if ($Line[3] <> '') $Output .= '<td><a target="_NEW2" href=" form.php?group='.$Line[1].'&ID='.$Line[0].'">'.$Line[3].'</a></td></tr>';63 else $Output .= '<td><a target="_NEW2" href=" form.php?group='.$Line[1].'&ID='.$Line[0].'">Překládat</a></td></tr>';62 if ($Line[3] <> '') $Output .= '<td><a target="_NEW2" href="'.$this->System->Link('/form.php?group='.$Line[1].'&ID='.$Line[0]).'">'.$Line[3].'</a></td></tr>'; 63 else $Output .= '<td><a target="_NEW2" href="'.$this->System->Link('form.php?group='.$Line[1].'&ID='.$Line[0]).'">Překládat</a></td></tr>'; 64 64 } 65 65 } else 66 66 { 67 67 $Output .= '<tr><td>'.$Line[2].'</td>'; 68 if ($Line[3] <> '') $Output .= '<td><a target="_NEW2" href=" form.php?group='.$Line[1].'&ID='.$Line[0].'">'.$Line[3].'</a></td></tr>';69 else $Output .= '<td><a target="_NEW2" href=" form.php?group='.$Line[1].'&ID='.$Line[0].'">Překládat</a></td></tr>';68 if ($Line[3] <> '') $Output .= '<td><a target="_NEW2" href="'.$this->System->Link('/form.php?group='.$Line[1].'&ID='.$Line[0]).'">'.$Line[3].'</a></td></tr>'; 69 else $Output .= '<td><a target="_NEW2" href="'.$this->System->Link('/form.php?group='.$Line[1].'&ID='.$Line[0]).'">Překládat</a></td></tr>'; 70 70 } 71 71 } … … 184 184 { 185 185 $TextID = $_GET['ID']; 186 $Output .= 'Přeložené názvy vztahující se k překladu: <a target="_NEW" href=" form.php?group='.$GroupId.'&ID='.$TextID.'">'.$TextID.'</a><br />'.186 $Output .= 'Přeložené názvy vztahující se k překladu: <a target="_NEW" href="'.$this->System->Link('/form.php?group='.$GroupId.'&ID='.$TextID).'">'.$TextID.'</a><br />'. 187 187 '<a href="?action=group&mode=1&group='.$GroupId.'&ID='.$TextID.'" title="Zobrazit všechny podobné výsledky">Všechny</a> '. 188 188 '<a href="?action=group&mode=0&group='.$GroupId.'&ID='.$TextID.'" title="Zobrazit pouze přesné výsledky">Přesné</a> '.
Note:
See TracChangeset
for help on using the changeset viewer.