Changeset 533


Ignore:
Timestamp:
Feb 24, 2013, 11:00:16 AM (12 years ago)
Author:
chronos
Message:
  • Opraveno: Chybné odkazy ve slovníčku.
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/index.php

    r510 r533  
    2222  '<small>Provede vymazání všech chybových záznamů v logu</small><br/><br/>'.   
    2323  '<a href="'.$System->Link('/admin/?action=addnew').'">Přidání aktuality</a><br/>'.
    24   '<small>Přidá aktulitu na hlavní stranu projektu</small><br/><br/>';   
     24  '<small>Přidá aktulitu na hlavní stranu projektu</small><br/><br/>'.   
     25  '<a href="'.$System->Link('/admin/?action=error').'">Testovací chyba</a><br/>'.
     26  '<small>Vyvolá testovací chybu</small><br/><br/>';   
    2527  return($Output);
    2628}
     
    6668}
    6769
     70function TestError()
     71{
     72  $s = $TT[0];
     73}
     74
    6875$Output = '';
    6976if($User->Licence(LICENCE_ADMIN))
     
    7178  if(array_key_exists('action', $_GET))
    7279  {
    73     if($_GET['action'] == 'img_level')
    74     {
    75       $Output .= ImgLevelShow();
    76     } else
    77     if($_GET['action'] == 'delerrlog') $Output .= DeleteErrorLog();
    78     else
    79     if($_GET['action'] == 'addnew')
     80    if($_GET['action'] == 'img_level') $Output .= ImgLevelShow();
     81    else if($_GET['action'] == 'delerrlog') $Output .= DeleteErrorLog();
     82    else if($_GET['action'] == 'error') $Output .= TestError();
     83    else if($_GET['action'] == 'addnew')
    8084    {
    8185      $Output .= SaveNew();
  • trunk/dictionary.php

    r532 r533  
    177177    $TextID = $_GET['ID'];
    178178    $Output .= 'Přeložené názvy vztahující se k překladu: <a target="_NEW" href="form.php?group='.$GroupId.'&amp;ID='.$TextID.'">'.$TextID.'</a><br />'.
    179         '<a href="?action="group&amp;mode=1&amp;group='.$GroupId.'&amp;ID='.$TextID.'" title="Zobrazit všechny podobné výsledky">Všechny</a> '.
    180         '<a href="?action="group&amp;mode=0&amp;group='.$GroupId.'&amp;ID='.$TextID.'" title="Zobrazit pouze přesné výsledky">Přesné</a> '.
    181         '<a href="?action="group&amp;mode=2&amp;group='.$GroupId.'&amp;ID='.$TextID.'" title="Zobrazit všechny nepřeložené">Nepřeložené</a> ';
     179        '<a href="?action=group&amp;mode=1&amp;group='.$GroupId.'&amp;ID='.$TextID.'" title="Zobrazit všechny podobné výsledky">Všechny</a> '.
     180        '<a href="?action=group&amp;mode=0&amp;group='.$GroupId.'&amp;ID='.$TextID.'" title="Zobrazit pouze přesné výsledky">Přesné</a> '.
     181        '<a href="?action=group&amp;mode=2&amp;group='.$GroupId.'&amp;ID='.$TextID.'" title="Zobrazit všechny nepřeložené">Nepřeložené</a> ';
    182182    $DbResult = $System->Database->query('SELECT * FROM '.$Table.' WHERE ID = '.$TextID);
    183183    $Line = $DbResult->fetch_assoc();
Note: See TracChangeset for help on using the changeset viewer.