Skip to content

Commit

Permalink
Merge pull request #10 from lars85/master
Browse files Browse the repository at this point in the history
BUGFIX: */X are not possible in annotations
  • Loading branch information
dfeyer authored Nov 11, 2016
2 parents f676afc + 8fdcd61 commit 7496347
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Ttree/Scheduler/Annotations/Schedule.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ final class Schedule
public function __construct(array $values)
{
if (isset($values['expression'])) {
$this->expression = (string)$values['expression'];
$this->expression = stripslashes((string)$values['expression']);
} else {
$this->expression = '* * * * *';
}
Expand Down

0 comments on commit 7496347

Please sign in to comment.