Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
10e3d66d
Commit
10e3d66d
authored
Feb 08, 2005
by
Steven Wittens
Browse files
- Missing apostrophe
parent
5f78d143
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/upload.module
View file @
10e3d66d
...
...
@@ -91,7 +91,7 @@ function upload_download() {
function
upload_file_download
(
$file
)
{
if
(
user_access
(
'view uploaded files'
))
{
$file
=
file_create_path
(
$file
);
$result
=
db_query
(
db_rewrite_sql
(
"SELECT f.nid, f.* from
{
files
}
f WHERE filepath = '%s"
,
'f'
),
$file
);
$result
=
db_query
(
db_rewrite_sql
(
"SELECT f.nid, f.* from
{
files
}
f WHERE filepath = '%s
'
"
,
'f'
),
$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.
...
...
modules/upload/upload.module
View file @
10e3d66d
...
...
@@ -91,7 +91,7 @@ function upload_download() {
function
upload_file_download
(
$file
)
{
if
(
user_access
(
'view uploaded files'
))
{
$file
=
file_create_path
(
$file
);
$result
=
db_query
(
db_rewrite_sql
(
"SELECT f.nid, f.* from
{
files
}
f WHERE filepath = '%s"
,
'f'
),
$file
);
$result
=
db_query
(
db_rewrite_sql
(
"SELECT f.nid, f.* from
{
files
}
f WHERE filepath = '%s
'
"
,
'f'
),
$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.
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment