Skip to content

Commit

Permalink
solves ticket 3306
Browse files Browse the repository at this point in the history
  • Loading branch information
euromark committed Oct 25, 2012
1 parent 83d307e commit f3bbe89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/Console/Command/Task/ExtractTask.php
Expand Up @@ -523,7 +523,7 @@ protected function _buildFiles() {
$occurrences[] = $file . ':' . implode(';', $lines);
}
$occurrences = implode("\n#: ", $occurrences);
$header = '#: ' . str_replace($paths, '', $occurrences) . "\n";
$header = '#: ' . str_replace(DS, '/', str_replace($paths, '', $occurrences)) . "\n";

if ($plural === false) {
$sentence = "msgid \"{$msgid}\"\n";
Expand Down

0 comments on commit f3bbe89

Please sign in to comment.