Changeset 665
- Timestamp:
- Dec 24, 2013, 1:32:58 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 7 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Export/cmdmpqexport.php
r658 r665 6 6 $_SERVER['REQUEST_URI'] = '127.0.0.1'; 7 7 8 include_once( '../../includes/global.php');8 include_once(dirname(__FILE__).'/../../includes/global.php'); 9 9 //include_once('../../includes/dbc.php'); 10 10 include_once('Export.php'); … … 36 36 } 37 37 } 38 if(!array_key_exists('ExportId', $_GET) and !array_key_exists(' dbc', $_GET) and !array_key_exists('lua', $_GET) and !array_key_exists('addon', $_GET)) {38 if(!array_key_exists('ExportId', $_GET) and !array_key_exists('version', $_GET) and !array_key_exists('dbc', $_GET) and !array_key_exists('lua', $_GET) and !array_key_exists('addon', $_GET)) { 39 39 $Output .= 'Usage type_export=id_export -for export<br />'; 40 40 $Output .= 'Usage ExportId=id_export - for write export info<br />'; … … 50 50 $Output .= $Export->Init(); 51 51 $Output .= $Export->ExportToLua(); 52 $Output = str_replace('<br/>',' 53 ',$Output); 54 $Output = str_replace('<br />',' 55 ',$Output); 56 } 57 if(array_key_exists('version', $_GET)) { 58 $Export = new Export($System); 59 $Export->Id = $_GET['version']; 60 $Export->LoadFilters(); 61 $Output .= $Export->ClientVersion['Version']; 52 62 $Output = str_replace('<br/>',' 53 63 ',$Output); … … 77 87 78 88 if(array_key_exists('ExportId', $_GET)) { 89 $Export = new Export($System); 90 $Export->Id = $_GET['ExportId']; 91 $Export->LoadFilters(); 92 79 93 //generation readme 80 94 $Output .= '<?xml version="1.0" encoding="utf-8"?\>'. … … 102 116 '<p><strong>Vlastnosti</strong>'. 103 117 '<ul>'. 104 '<li>Požadovaná verze klienta: 3.3.3a</li>'.118 '<li>Požadovaná verze klienta: '.$Export->ClientVersion['Version'].'</li>'. 105 119 '<li>Datum uvolnění: '.date('d.m.Y h:m',time()).'</li>'. 106 120 '<li>Sestaveno automaticky překladovým systémem <a href="http://wowpreklad.zdechov.net/">WoW překlad</a></li>'. 107 '<li>Tento soubor se generuje každý den. Pokud se zapojíte do překladu, zítra můžete stáhnout tento soubor znovu včetně svých překladů</li>'.108 '<li>Sestavil: Maron</li>'.121 //'<li>Tento soubor se generuje každý den. Pokud se zapojíte do překladu, zítra můžete stáhnout tento soubor znovu včetně svých překladů</li>'. 122 //'<li>Sestavil: Maron</li>'. 109 123 '</ul>'. 110 124 '</p>'. -
trunk/includes/Version.php
r664 r665 6 6 // and system will need database update. 7 7 8 $Revision = 66 4; // Subversion revision8 $Revision = 665; // Subversion revision 9 9 $DatabaseRevision = 646; // Database structure revision 10 $ReleaseTime = '2013-12-2 0';10 $ReleaseTime = '2013-12-24';
Note:
See TracChangeset
for help on using the changeset viewer.