Skip to content

Commit

Permalink
updated changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
DavertMik committed Feb 24, 2015
1 parent 5b38585 commit a98a14a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

#### 0.5.2

* [Phar] do not compress phar if more than 1000 files included (causes internal PHP error) *2015-02-24*
* _copyDir and _mirrorDir shortcuts fixed by @boedah *2015-02-24*
* [File\Write] methods replace() and regexReplace() added by @asterixcapri *2015-02-24*
* [Codecept] Allow to set custom name of coverage file raw name by @raistlin *2015-02-24*
* [Ssh] Added property `remoteDir` by @boedah *2015-02-24*
* [PhpServer] fixed passing arguments to server *2015-02-24*


Expand Down
2 changes: 1 addition & 1 deletion src/Task/File/Write.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public function textFromFile($filename)
*/
public function place($name, $val)
{
$this->replace('{{' . $name . '}}', $val);
$this->replace('{' . $name . '}', $val);
return $this;
}

Expand Down

0 comments on commit a98a14a

Please sign in to comment.