Changeset 209 for trunk/save.php
- Timestamp:
- Jun 19, 2009, 9:11:06 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/save.php
r191 r209 9 9 10 10 if(array_key_exists('group', $_GET)) $GroupId = $_GET['group']; else $GroupId = 1; 11 if(($GroupId < 1) or ($GroupId > count($TranslationTree))) 12 { 13 echo('Neexistující id překladové skupiny.'); 14 ShowFooter(); 15 die(); 16 } 11 17 $Table = $TranslationTree[$GroupId]['TablePrefix']; 12 13 18 if(array_key_exists('entry', $_POST) and Licence(LICENCE_USER)) 14 19 { … … 115 120 116 121 $Database->SQLCommand('UPDATE `user` SET `NeedUpdate` = 1 WHERE ID = '.$UserID); //informace o nutnosti načíst XP 117 } else { 118 if(array_key_exists('entry', $_POST)) { 119 echo ('Byli jste automaticky odhlášeni. Pro <strong>Uložení překladu</strong> se musíte přihlásit zde:<br /><br />'); 120 echo('<form action="save.php?group='.$GroupId.'" method="post"><div>'); 121 echo('<input type="hidden" name="entry" value="'.$_POST['entry'].'" />'. 122 '<input type="hidden" name="user" value="'.$_POST['user'].'" />'. 123 '<input type="hidden" name="ID" value="'.$_POST['ID'].'" />'. 124 '<input type="hidden" name="Language" value="'.$_POST['Language'].'" />'); 122 } else 123 { 124 if(array_key_exists('entry', $_POST)) 125 { 126 echo('Byli jste automaticky odhlášeni. Pro <strong>Uložení překladu</strong> se musíte přihlásit zde:<br /><br />'); 127 echo('<form action="save.php?group='.$GroupId.'" method="post"><div>'); 128 echo('<input type="hidden" name="entry" value="'.$_POST['entry'].'" />'. 129 '<input type="hidden" name="user" value="'.$_POST['user'].'" />'. 130 '<input type="hidden" name="ID" value="'.$_POST['ID'].'" />'. 131 '<input type="hidden" name="Language" value="'.$_POST['Language'].'" />'); 125 132 126 127 133 foreach($TranslationTree[$GroupId]['Items'] as $Index => $TextItem) 134 echo('<input id="'.$TextItem['Column'].'" name="'.$TextItem['Column'].'" type="hidden" value="'.htmlspecialchars($_POST[$TextItem['Column']]).'" />'); 128 135 129 echo 136 echo(' <table> 130 137 <tr> 131 138 <td>Jméno: <input type="text" name="LoginUser" size="13" /></td> … … 138 145 </tr> 139 146 </table>'); 140 } 147 } else echo('Na tuto stránku nelze vstoupit přímo.'); 141 148 } 142 149
Note:
See TracChangeset
for help on using the changeset viewer.