Ignore:
Timestamp:
Feb 5, 2014, 2:14:14 PM (10 years ago)
Author:
maron
Message:
  • added: compare text in addon without white char
File:
1 edited

Legend:

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

    r781 r784  
    6262    $string = str_replace('\\r', ' ', $string);
    6363    $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);
    6667    return($string);
    6768  }
Note: See TracChangeset for help on using the changeset viewer.