Skip to content

Commit

Permalink
wrong param order in str_replace {content}
Browse files Browse the repository at this point in the history
  • Loading branch information
trob authored Mar 9, 2017
1 parent 2d19c3d commit 4cf0e3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/fabrik_form/article/article.php
Original file line number Diff line number Diff line change
Expand Up @@ -700,7 +700,7 @@ protected function buildContent()

if ($content !== '')
{
$messageTemplate = str_replace('{content}', $messageTemplate, $content);
$messageTemplate = str_replace('{content}', $content, $messageTemplate);
}
}

Expand Down

0 comments on commit 4cf0e3e

Please sign in to comment.