Skip to content
Permalink
Browse files Browse the repository at this point in the history
Fix #2365
  • Loading branch information
JC5 committed Aug 2, 2019
1 parent 3ad4e04 commit 692b256
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/Rule/CreateController.php
Expand Up @@ -124,7 +124,7 @@ public function create(Request $request, RuleGroup $ruleGroup = null)
*/
public function createFromBill(Request $request, Bill $bill)
{
$request->session()->flash('info', (string)trans('firefly.instructions_rule_from_bill', ['name' => $bill->name]));
$request->session()->flash('info', (string)trans('firefly.instructions_rule_from_bill', ['name' => e($bill->name)]));

$this->createDefaultRuleGroup();
$this->createDefaultRule();
Expand Down

0 comments on commit 692b256

Please sign in to comment.