function _fix_gpc_magic_files

_fix_gpc_magic_files(&$item, $key)

Strips slashes from $_FILES items.

Callback for array_walk() within fix_gpc_magic().

The tmp_name key is skipped keys since PHP generates single backslashes for file paths on Windows systems.

Parameters

$item: An item from $_FILES.

$key: The key for the item within $_FILES.

See also

http://php.net/manual/features.file-upload.php#42280

File

includes/common.inc, line 1182
Common functions that many Drupal modules will need to reference.

Code

function _fix_gpc_magic_files(&$item, $key) {
  if ($key != 'tmp_name') {
    if (is_array($item)) {
      array_walk($item, '_fix_gpc_magic_files');
    }
    else {
      $item = stripslashes($item);
    }
  }
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/includes!common.inc/function/_fix_gpc_magic_files/7.x