Changeset 781


Ignore:
Timestamp:
Feb 3, 2014, 2:27:41 PM (11 years ago)
Author:
maron
Message:
  • Fixed: Generation addon without newline in en text
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Export/CreateAddon.php

    r779 r781  
    5858    $string = str_replace('$b', ' ', $string); 
    5959    $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);
    6264    while(strpos($string, '  '))
    6365      $string = str_replace('  ', ' ', $string);
  • trunk/includes/Version.php

    r780 r781  
    66// and system will need database update.
    77
    8 $Revision = 780; // Subversion revision
     8$Revision = 781; // Subversion revision
    99$DatabaseRevision = 748; // Database structure revision
    1010$ReleaseTime = '2014-02-03';
Note: See TracChangeset for help on using the changeset viewer.