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
7b5a8d93
Commit
7b5a8d93
authored
Dec 07, 2005
by
Dries Buytaert
Browse files
- Patch
#29326
by Morbus: added missing returns.
parent
bb1f5dfd
Changes
1
Hide whitespace changes
Inline
Side-by-side
database/updates.inc
View file @
7b5a8d93
...
...
@@ -1098,12 +1098,13 @@ function system_update_156() {
$ret
=
array
();
$ret
[]
=
update_sql
(
"DELETE FROM
{
cache
}
"
);
system_themes
();
return
array
()
;
return
$ret
;
}
function
system_update_157
()
{
$ret
=
array
();
$ret
[]
=
update_sql
(
"DELETE FROM
{
url_alias
}
WHERE src = 'node/feed' AND dst = 'rss.xml'"
);
$ret
[]
=
update_sql
(
"INSERT INTO
{
url_alias
}
(src, dst) VALUES ('rss.xml', 'node/feed')"
);
return
$ret
;
}
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