Changeset 781
- Timestamp:
- Feb 3, 2014, 2:27:41 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Export/CreateAddon.php
r779 r781 58 58 $string = str_replace('$b', ' ', $string); 59 59 $string = $this->ReplaceVarInText($string); 60 $string = str_replace("\r", '', $string); 61 $string = str_replace("\n", '', $string); 60 $string = str_replace("\r", ' ', $string); 61 $string = str_replace("\n", ' ', $string); 62 $string = str_replace('\\r', ' ', $string); 63 $string = str_replace('\\n', ' ', $string); 62 64 while(strpos($string, ' ')) 63 65 $string = str_replace(' ', ' ', $string); -
trunk/includes/Version.php
r780 r781 6 6 // and system will need database update. 7 7 8 $Revision = 78 0; // Subversion revision8 $Revision = 781; // Subversion revision 9 9 $DatabaseRevision = 748; // Database structure revision 10 10 $ReleaseTime = '2014-02-03';
Note:
See TracChangeset
for help on using the changeset viewer.