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
e3ce199f
Commit
e3ce199f
authored
Dec 06, 2007
by
Gábor Hojtsy
Browse files
#198321
by ulhume: recent security update had the arguments order wrong in db_query_range()
parent
d83289f8
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/taxonomy/taxonomy.module
View file @
e3ce199f
...
...
@@ -1100,7 +1100,7 @@ function taxonomy_select_nodes($tids = array(), $operator = 'or', $depth = 0, $p
$result
=
pager_query
(
$sql
,
variable_get
(
'default_nodes_main'
,
10
),
0
,
$sql_count
,
$args
);
}
else
{
$result
=
db_query_range
(
$sql
,
0
,
variable_get
(
'feed_default_items'
,
10
)
,
$args
);
$result
=
db_query_range
(
$sql
,
$args
,
0
,
variable_get
(
'feed_default_items'
,
10
));
}
}
...
...
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