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
33f4134f
Commit
33f4134f
authored
May 14, 2005
by
Dries
Browse files
- Patch
#22723
by ejort: 'from' to 'FROM'.
parent
3a02ee64
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/upload.module
View file @
33f4134f
...
...
@@ -111,7 +111,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 @
33f4134f
...
...
@@ -111,7 +111,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
Markdown
is supported
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