Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
D
drupal
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Custom Issue Tracker
Custom Issue Tracker
Labels
Merge Requests
222
Merge Requests
222
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Analytics
Analytics
Code Review
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
project
drupal
Commits
14c7a79e
Commit
14c7a79e
authored
Sep 09, 2010
by
webchick
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#890716
by agentrickard: Fixed Changing from public to private does not change field behavior.
parent
ccd6fb62
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
modules/file/file.field.inc
modules/file/file.field.inc
+1
-1
modules/image/image.field.inc
modules/image/image.field.inc
+1
-1
No files found.
modules/file/file.field.inc
View file @
14c7a79e
...
...
@@ -17,7 +17,7 @@ function file_field_info() {
'settings'
=>
array
(
'display_field'
=>
0
,
'display_default'
=>
0
,
'uri_scheme'
=>
'public'
,
'uri_scheme'
=>
variable_get
(
'file_default_scheme'
,
'public'
)
,
),
'instance_settings'
=>
array
(
'file_extensions'
=>
'txt'
,
...
...
modules/image/image.field.inc
View file @
14c7a79e
...
...
@@ -15,7 +15,7 @@ function image_field_info() {
'label'
=>
t
(
'Image'
),
'description'
=>
t
(
'This field stores the ID of an image file as an integer value.'
),
'settings'
=>
array
(
'uri_scheme'
=>
'public'
,
'uri_scheme'
=>
variable_get
(
'file_default_scheme'
,
'public'
)
,
'default_image'
=>
0
,
),
'instance_settings'
=>
array
(
...
...
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