Changeset 17813


Ignore:
Timestamp:
05/09/14 16:33:27 (11 years ago)
Author:
tbretz
Message:
Remove the carriage return from returned editor contents ;)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/www/viewer/index.php

    r17792 r17813  
    2424    header('Content-Transfer-Encoding: Text');
    2525    header('Content-Disposition: attachment; filename="'.$name.'"');
    26     print($source);
     26    print(str_replace("\r", "", $source));
    2727    return;
    2828}
Note: See TracChangeset for help on using the changeset viewer.