Changeset 536 for trunk/save.php
- Timestamp:
- Apr 23, 2013, 10:42:18 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/save.php
r525 r536 2 2 3 3 include_once('includes/global.php'); 4 4 5 5 6 $Output = ''; 6 7 $CompleteText = array('nedokončený', 'dokončený'); 8 9 unset($Message); 10 HandleLoginForm(); 11 if(isset($Message)) $Output .= ShowMessage($Message, $MessageType); 7 12 8 13 $GroupId = LoadGroupIdParameter(); … … 176 181 $Output .= 'Z této stránky můžete být automaticky přesměrování. Nastavit kam chcete být přesměrování si můžete v <a href="'.$System->Link('/Options.php').'" title="Nastavení uživatele">Nastavení</a>'; 177 182 178 // Aktualizace informace o nutnosti načíst XP183 // Update flag for experience info load 179 184 $System->Database->query('UPDATE `User` SET `NeedUpdate` = 1 WHERE `ID` = '.$User->Id); 180 185 } else $Output .= ShowMessage('Položka nenalezena', MESSAGE_CRITICAL); 181 186 } else 182 187 { 183 if(array_key_exists('ID', $_POST) )188 if(array_key_exists('ID', $_POST) and array_key_exists('entry', $_POST) and array_key_exists('Language', $_POST) and array_key_exists('user', $_POST)) 184 189 { 185 190 $Output .= 'Byli jste automaticky odhlášeni. Pro <strong>Uložení překladu</strong> se musíte přihlásit zde:<br /><br />'. … … 188 193 '<input type="hidden" name="user" value="'.$_POST['user'].'" />'. 189 194 '<input type="hidden" name="ID" value="'.$_POST['ID'].'" />'. 190 '<input type="hidden" name="Language" value="'.$_POST['Language'].'" />'; 195 '<input type="hidden" name="Language" value="'.$_POST['Language'].'" />'; 191 196 192 197 foreach($TranslationTree[$GroupId]['Items'] as $Index => $TextItem) … … 204 209 '</tr>'. 205 210 '</table>'; 206 } else $Output = ShowMessage('N a tuto stránku nelze vstoupit přímo.', MESSAGE_CRITICAL);211 } else $Output = ShowMessage('Nezadány požadované údaje.', MESSAGE_CRITICAL); 207 212 } 208 213 209 214 ShowPage($Output); 210 215 211 212 216 ?>
Note:
See TracChangeset
for help on using the changeset viewer.