Changeset 215 for trunk/export/index.php
- Timestamp:
- Jun 23, 2009, 10:03:53 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/export/index.php
r214 r215 45 45 } 46 46 47 function WriteSetting($ExportSetting) { 48 echo '<textarea rows="10" cols="100">'.serialize($ExportSetting).'</textarea><br />'. 47 function WriteSetting($ExportSetting) 48 { 49 echo('<textarea rows="10" cols="100">'.serialize($ExportSetting).'</textarea><br />'. 49 50 'Odkaz ke stažení s vlastním nastavením: '. 50 '<a href="?action=output& ExportSetting='.htmlspecialchars(serialize($ExportSetting)).'">Odkaz vlastního exportu</a><br />'.51 'I když se nastavení ukládá, pro jistotu si jej můžete uložit nebo poslat příteli.' ;52 } 53 54 if (array_key_exists('ExportSetting',$_GET))51 '<a href="?action=output&ExportSetting='.htmlspecialchars(serialize($ExportSetting)).'">Odkaz vlastního exportu</a><br />'. 52 'I když se nastavení ukládá, pro jistotu si jej můžete uložit nebo poslat příteli.'); 53 } 54 55 if(array_key_exists('ExportSetting', $_GET)) 55 56 { 56 57 $ExportSetting = unserialize(stripcslashes(stripcslashes($_GET['ExportSetting']))); … … 350 351 } 351 352 352 if (in_array($ExportSetting['Export'],$Addon_verses)) { //addon pro různé verze 353 if(in_array($ExportSetting['Export'], $Addon_verses)) 354 { // Addon pro různé verze 353 355 $Addon_verse = $Addon_verses[array_search($ExportSetting['Export'],$Addon_verses)]; 354 356 if(function_exists('gzcompress')) { … … 388 390 $ExportSetting['language'.$Language['Id']] = array_key_exists('language'.$Language['Id'], $_POST); 389 391 390 if (array_key_exists('ExportSetting',$_GET))391 $ExportSetting = unserialize(stripcslashes(stripcslashes($_GET['ExportSetting'])));392 if(array_key_exists('ExportSetting', $_GET)) 393 $ExportSetting = unserialize(stripcslashes(stripcslashes($_GET['ExportSetting']))); 392 394 393 395 echo('<strong>Krok 3. - Typ výstupu</strong><br /><br />'); 394 396 echo('<form action="?action=result" method="post"><div>'. 395 '<table><tr><td>'.397 '<table><tr><td>'. 396 398 '<fieldset><legend>Forma výstupu</legend>'. 397 399 RadioButton('Export', 'MangosSQLDirect', $ExportSetting['Export'] == 'MangosSQLDirect').'MaNGOS SQL - přímo zobrazit<br />'. 398 400 RadioButton('Export', 'MangosSQLCompressed', $ExportSetting['Export'] == 'MangosSQLCompressed').'MaNGOS SQL - komprimovaný soubor<br />'. 399 401 RadioButton('Export', 'AoWoWSQLDirect', $ExportSetting['Export'] == 'AoWoWSQLDirect').'AoWoW SQL - přímo zobrazit<br />'.
Note:
See TracChangeset
for help on using the changeset viewer.