Skip to content

Commit

Permalink
Merge pull request #139 from ivankruchkoff/master
Browse files Browse the repository at this point in the history
Remove undefined unused param.
  • Loading branch information
radgeek committed Aug 23, 2022
2 parents 7dc69bc + 950a93d commit cb1c5cd
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 cb1c5cd

Please sign in to comment.