Skip to content

Commit

Permalink
Fixed wrong function name for filter_input fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
mahype committed Jul 10, 2019
1 parent fa9d333 commit b8d3fe5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@ You can also contribute to the plugin by translating it. Simply visit [translate

== Changelog ==


= 1.0.7 =
* Fix: Fixed wrong function name for filter_input fix which caused fatal error

= 1.0.6 =
* Enhanced: Changed standard export type to one column for choices for better readability in mails
* Enhanced: Changed order of reCaptcha to the end of protectors list, because it's 3rd pary
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ protected function handle_row_actions( $model, $column_name, $primary ) {
$action_url = add_query_arg(
array(
'_wpnonce' => $nonce,
'_wp_http_referer' => rawurlencode( Fixes::filter_input( INPUT_SERVER, 'REQUEST_URI' ) ),
'_wp_http_referer' => rawurlencode( Fixes::php_filter_input( INPUT_SERVER, 'REQUEST_URI' ) ),
),
$action_url
);
Expand Down

0 comments on commit b8d3fe5

Please sign in to comment.