Changeset 533
- Timestamp:
- Feb 24, 2013, 11:00:16 AM (12 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/index.php
r510 r533 22 22 '<small>Provede vymazání všech chybových záznamů v logu</small><br/><br/>'. 23 23 '<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/>'; 25 27 return($Output); 26 28 } … … 66 68 } 67 69 70 function TestError() 71 { 72 $s = $TT[0]; 73 } 74 68 75 $Output = ''; 69 76 if($User->Licence(LICENCE_ADMIN)) … … 71 78 if(array_key_exists('action', $_GET)) 72 79 { 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') 80 84 { 81 85 $Output .= SaveNew(); -
trunk/dictionary.php
r532 r533 177 177 $TextID = $_GET['ID']; 178 178 $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 />'. 179 '<a href="?action= "group&mode=1&group='.$GroupId.'&ID='.$TextID.'" title="Zobrazit všechny podobné výsledky">Všechny</a> '.180 '<a href="?action= "group&mode=0&group='.$GroupId.'&ID='.$TextID.'" title="Zobrazit pouze přesné výsledky">Přesné</a> '.181 '<a href="?action= "group&mode=2&group='.$GroupId.'&ID='.$TextID.'" title="Zobrazit všechny nepřeložené">Nepřeložené</a> ';179 '<a href="?action=group&mode=1&group='.$GroupId.'&ID='.$TextID.'" title="Zobrazit všechny podobné výsledky">Všechny</a> '. 180 '<a href="?action=group&mode=0&group='.$GroupId.'&ID='.$TextID.'" title="Zobrazit pouze přesné výsledky">Přesné</a> '. 181 '<a href="?action=group&mode=2&group='.$GroupId.'&ID='.$TextID.'" title="Zobrazit všechny nepřeložené">Nepřeložené</a> '; 182 182 $DbResult = $System->Database->query('SELECT * FROM '.$Table.' WHERE ID = '.$TextID); 183 183 $Line = $DbResult->fetch_assoc();
Note:
See TracChangeset
for help on using the changeset viewer.