diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-12-29 23:03:05 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-12-29 23:03:05 +0000 |
commit | 26875e9b38985518e9ecf49d18682d42265cf806 (patch) | |
tree | 8910d435c70ed596fe8b3f4b669c22d21b919215 /modules/upload/upload.module | |
parent | 627699cc9e22daa7ad2df915f4149fa53344be15 (diff) | |
download | brdo-26875e9b38985518e9ecf49d18682d42265cf806.tar.gz brdo-26875e9b38985518e9ecf49d18682d42265cf806.tar.bz2 |
- Added missing space
Diffstat (limited to 'modules/upload/upload.module')
-rw-r--r-- | modules/upload/upload.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/upload/upload.module b/modules/upload/upload.module index a1d7e5e60..c770719cd 100644 --- a/modules/upload/upload.module +++ b/modules/upload/upload.module @@ -90,7 +90,7 @@ function upload_download() { function upload_file_download($file) { if (user_access('view uploaded files')) { $file = file_create_path($file); - $result = db_query("SELECT * from {files} n " . node_access_join_sql() . "WHERE filepath = '%s' AND ". node_access_where_sql(), $file); + $result = db_query("SELECT * from {files} n " . node_access_join_sql() . " WHERE filepath = '%s' AND ". node_access_where_sql(), $file); if ($file = db_fetch_object($result)) { $name = mime_header_encode($file->filename); // Serve images and text inline for the browser to display rather than download. |