Skip to content

Commit

Permalink
Merge pull request #74 from llaville/feature/overriding-templates
Browse files Browse the repository at this point in the history
Fix issue 73 - overriding templates
  • Loading branch information
lenybernard authored Mar 27, 2018
2 parents 57c7eff + 9b5acb9 commit 5aaf2d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Handler/AlertifySessionHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public function handle($session, \Twig_Environment $twig)
}

$parameters['type'] = $type;
$renders[$type.$key] = $twig->render('TroopersAlertifyBundle::'.$parameters['engine'].'.html.twig', $parameters);
$renders[$type.$key] = $twig->render('@TroopersAlertify/'.$parameters['engine'].'.html.twig', $parameters);
}
}

Expand Down

0 comments on commit 5aaf2d7

Please sign in to comment.