Skip to content

Commit

Permalink
Merge pull request kaltura#349 from kaltura/IX-9.4.0-os-matching-eol-…
Browse files Browse the repository at this point in the history
…in-filters-gen

use CRLF on windows in FiltersGenerator
  • Loading branch information
erankor committed Oct 20, 2013
2 parents 591c621 + bd85827 commit c6b4c2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generator/FiltersGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ protected function writeAfterTypes()

private function appendLine($txt = "")
{
$this->_txt .= $txt ."\n";
$this->_txt .= $txt . PHP_EOL;
}

private function writeToFile($fileName, $contents)
Expand Down

0 comments on commit c6b4c2f

Please sign in to comment.