Skip to content

Commit

Permalink
Remove undefined unused param.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan@Kruchkoff.com committed Aug 23, 2022
1 parent 7dc69bc commit 950a93d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion feedwordpress.php
Original file line number Diff line number Diff line change
Expand Up @@ -2289,7 +2289,7 @@ static function param( $key, $type = 'REQUEST', $default = null, $sanitizer = nu
} /* FeedWordPress::param () */

static function post( $key, $default = null, $sanitizer = null ) {
return self::sanitized_parameter( MyPHP::post( $key, $default, $type ), $sanitizer );
return self::sanitized_parameter( MyPHP::post( $key, $default ), $sanitizer );
} /* FeedWordPress::post () */

static function shallow_sanitize( $item, $sanitizer = null ) {
Expand Down

0 comments on commit 950a93d

Please sign in to comment.