function check_file in Drupal 4
Same name and namespace in other branches
- 5 includes/common.inc \check_file()
- 6 includes/common.inc \check_file()
Related topics
File
- includes/
common.inc, line 707 - Common functions that many Drupal modules will need to reference.
Code
function check_file($filename) {
return is_uploaded_file($filename);
}