Skip to content

Commit

Permalink
Fix param usage
Browse files Browse the repository at this point in the history
  • Loading branch information
sc0ttkclark committed Jun 18, 2024
1 parent a184cf2 commit b456eb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/data.php
Original file line number Diff line number Diff line change
Expand Up @@ -909,7 +909,7 @@ function pods_v( $var = null, $type = 'get', $default = null, $strict = false, $
* @param object $params Additional arguments for pods_v().
* @param string $type The type of var given.
*/
$output = apply_filters( "pods_var_{$type}", $default, $var, $strict, $paams, $type );
$output = apply_filters( "pods_var_{$type}", $default, $var, $strict, $params, $type );

/**
* Filter to handle custom variable types.
Expand Down

0 comments on commit b456eb9

Please sign in to comment.