Description
Dummy validation functionWe choose to accept the input from the user without performing any validation. You may think this is insecure. It probably is if there wasn't any other security. It's certainly a lot easier.
Usage
$array = oik_plugins_validate( $input );Parameters
- $input
- ( array ) required – stuff to validate
Returns
array validated stuffSource
File name: oik/libs/oik-admin.phpLines:
1 to 3 of 3
function oik_plugins_validate( $input ) { return $input; }View on GitHub View on Trac
