Changeset 784
- Timestamp:
- Feb 5, 2014, 2:14:14 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Export/CreateAddon.php
r781 r784 62 62 $string = str_replace('\\r', ' ', $string); 63 63 $string = str_replace('\\n', ' ', $string); 64 while(strpos($string, ' ')) 65 $string = str_replace(' ', ' ', $string); 64 $string = str_replace(' ', '', $string); 65 // while(strpos($string, ' ')) 66 // $string = str_replace(' ', ' ', $string); 66 67 return($string); 67 68 } -
trunk/Modules/Export/files/3.3.5a/CzWoW/CzWoW.lua
r779 r784 18 18 text = gsub(text, "^%s+", ""); 19 19 text = gsub(text, "%s+$", ""); 20 text = gsub(text, " ", ""); 20 21 return text; 21 22 end … … 89 90 if Debug then 90 91 if (text == nil) then else 92 print("Or: "..text); 91 93 print("En: "..trim(text)); 92 94 text = DoTranslate(text); -
trunk/Modules/Export/files/4.3.4/CzWoW/CzWoW.lua
r779 r784 18 18 text = gsub(text, "^%s+", ""); 19 19 text = gsub(text, "%s+$", ""); 20 text = gsub(text, " ", ""); 20 21 return text; 21 22 end … … 89 90 if Debug then 90 91 if (text == nil) then else 92 print("Or: "..text); 91 93 print("En: "..trim(text)); 92 94 text = DoTranslate(text); -
trunk/Modules/Export/files/5.4.0/CzWoW/CzWoW.lua
r779 r784 18 18 text = gsub(text, "^%s+", ""); 19 19 text = gsub(text, "%s+$", ""); 20 text = gsub(text, " ", ""); 20 21 return text; 21 22 end … … 89 90 if Debug then 90 91 if (text == nil) then else 92 print("Or: "..text); 91 93 print("En: "..trim(text)); 92 94 text = DoTranslate(text); -
trunk/includes/Version.php
r783 r784 6 6 // and system will need database update. 7 7 8 $Revision = 78 3; // Subversion revision8 $Revision = 784; // Subversion revision 9 9 $DatabaseRevision = 748; // Database structure revision 10 $ReleaseTime = '2014-02-0 3';10 $ReleaseTime = '2014-02-04';
Note:
See TracChangeset
for help on using the changeset viewer.