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
9d517a73
Commit
9d517a73
authored
Sep 01, 2004
by
Steven Wittens
Browse files
Fixing URL in taxonomy path update (taxonomy/terms -> taxonomy/term).
parent
d441752d
Changes
1
Hide whitespace changes
Inline
Side-by-side
database/updates.inc
View file @
9d517a73
...
...
@@ -1257,10 +1257,10 @@ function update_98() {
if
(
$page
==
'feed'
||
$page
==
'page'
)
{
switch
(
$op
)
{
case
'or'
:
$new
=
'taxonomy/term
s
/'
.
str_replace
(
','
,
'+'
,
$terms
);
$new
=
'taxonomy/term/'
.
str_replace
(
','
,
'+'
,
$terms
);
break
;
case
'and'
:
$new
=
'taxonomy/term
s
/'
.
$terms
;
$new
=
'taxonomy/term/'
.
$terms
;
break
;
}
if
(
$new
)
{
...
...
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