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
23f64350
Commit
23f64350
authored
Jun 01, 2006
by
Dries
Browse files
- Improved input checking.
parent
4c27d9e8
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/taxonomy.module
View file @
23f64350
...
...
@@ -1237,7 +1237,8 @@ function taxonomy_term_page($str_tids = '', $depth = 0, $op = 'page') {
}
if
(
$names
)
{
drupal_set_title
(
$title
=
implode
(
', '
,
$names
));
$title
=
check_plain
(
implode
(
', '
,
$names
));
drupal_set_title
(
$title
);
switch
(
$op
)
{
case
'page'
:
...
...
modules/taxonomy/taxonomy.module
View file @
23f64350
...
...
@@ -1237,7 +1237,8 @@ function taxonomy_term_page($str_tids = '', $depth = 0, $op = 'page') {
}
if
(
$names
)
{
drupal_set_title
(
$title
=
implode
(
', '
,
$names
));
$title
=
check_plain
(
implode
(
', '
,
$names
));
drupal_set_title
(
$title
);
switch
(
$op
)
{
case
'page'
:
...
...
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