Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
0eb731d5
Commit
0eb731d5
authored
Dec 11, 2005
by
Dries Buytaert
Browse files
- Patch
#40463
by chx and baudolino: fixed fatal error in forms.inc.
parent
b4552cd9
Changes
1
Hide whitespace changes
Inline
Side-by-side
database/updates.inc
View file @
0eb731d5
...
...
@@ -1223,3 +1223,15 @@ function system_update_159() {
return
$ret
;
}
function
system_update_160
()
{
$types
=
module_invoke
(
'node'
,
'get_types'
);
if
(
is_array
(
$types
))
{
foreach
(
$types
as
$type
)
{
if
(
!
is_array
(
variable_get
(
"node_options_
$type
"
,
array
())))
{
variable_set
(
"node_options_
$type
"
,
array
());
}
}
}
return
array
();
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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