Changeset 895
- Timestamp:
- Mar 6, 2023, 12:24:17 PM (21 months ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Application/Version.php
r894 r895 7 7 8 8 $Version = '1.0'; 9 $Revision = 89 4; // Subversion revision9 $Revision = 895; // Subversion revision 10 10 $DatabaseRevision = 891; // Database structure revision 11 11 $ReleaseDate = strtotime('2023-03-06'); -
trunk/Install/deb/debian/control
r894 r895 8 8 Package: wowpreklad 9 9 Architecture: all 10 Depends: ${shlibs:Depends}, ${misc:Depends}, apache2, php, dbconfig-mysql, nsis 10 Depends: ${shlibs:Depends}, ${misc:Depends}, apache2, php, dbconfig-mysql, nsis, zip 11 11 Description: World of Warcraft web translation platform. 12 12 HomePage: https://app.zdechov.net/wowpreklad -
trunk/Modules/Export/CreateAddon.php
r894 r895 241 241 while ($Line = $DbResult->fetch_array()) 242 242 { 243 $Original = $this->my_trim($Line['En'.$Column['Column']]); 244 $Translated = $this->my_trim($Line[$Column['Column']]); 243 $OriginalText = $Line['En'.$Column['Column']]; 244 if ($OriginalText == null) $OriginalText = ''; 245 $TargetText = $Line[$Column['Column']]; 246 if ($TargetText == null) $Targettext = ''; 247 $Original = $this->my_trim($OriginalText); 248 $Translated = $this->my_trim($TargetText); 245 249 if ($this->ClientVersion['Version'] == '2.4.3') 246 250 {
Note:
See TracChangeset
for help on using the changeset viewer.