Skip to content

Commit

Permalink
Use $request var in FeedbackAction
Browse files Browse the repository at this point in the history
  • Loading branch information
addshore committed Apr 28, 2016
1 parent dbde66f commit 70b39f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/Actions/FeedbackAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function __construct( \Silex\Application $app ) {
}
$this->i18n = json_decode( file_get_contents( $langFile ), true );

if ( $this->requestValid( $app['request'] ) ) {
if ( $this->requestValid( $request ) ) {
$this->sendMail(
$request->get( 'name' ),
$request->get( 'feedback' )
Expand Down

0 comments on commit 70b39f8

Please sign in to comment.