classes/fields/pick.php 1 location
|
@@ 2409-2417 (lines=9) @@
|
| 2406 |
|
// @codingStandardsIgnoreLine |
| 2407 |
|
$params = pods_unslash( (array) $_POST ); |
| 2408 |
|
|
| 2409 |
|
foreach ( $params as $key => $value ) { |
| 2410 |
|
if ( 'action' === $key ) { |
| 2411 |
|
continue; |
| 2412 |
|
} |
| 2413 |
|
|
| 2414 |
|
unset( $params[ $key ] ); |
| 2415 |
|
|
| 2416 |
|
$params[ str_replace( '_podsfix_', '', $key ) ] = $value; |
| 2417 |
|
} |
| 2418 |
|
|
| 2419 |
|
$params = (object) $params; |
| 2420 |
|
|
classes/fields/file.php 1 location
|
@@ 904-912 (lines=9) @@
|
| 901 |
|
// Sanitize input @codingStandardsIgnoreLine |
| 902 |
|
$params = pods_unslash( (array) $_POST ); |
| 903 |
|
|
| 904 |
|
foreach ( $params as $key => $value ) { |
| 905 |
|
if ( 'action' === $key ) { |
| 906 |
|
continue; |
| 907 |
|
} |
| 908 |
|
|
| 909 |
|
unset( $params[ $key ] ); |
| 910 |
|
|
| 911 |
|
$params[ str_replace( '_podsfix_', '', $key ) ] = $value; |
| 912 |
|
} |
| 913 |
|
|
| 914 |
|
$params = (object) $params; |
| 915 |
|
|
classes/PodsComponents.php 1 location
|
@@ 719-727 (lines=9) @@
|
| 716 |
|
// Sanitize input |
| 717 |
|
$params = pods_unslash( (array) $_POST ); |
| 718 |
|
|
| 719 |
|
foreach ( $params as $key => $value ) { |
| 720 |
|
if ( 'action' === $key ) { |
| 721 |
|
continue; |
| 722 |
|
} |
| 723 |
|
|
| 724 |
|
unset( $params[ $key ] ); |
| 725 |
|
|
| 726 |
|
$params[ str_replace( '_podsfix_', '', $key ) ] = $value; |
| 727 |
|
} |
| 728 |
|
|
| 729 |
|
$params = (object) $params; |
| 730 |
|
|