Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
drupal.org
taxonomy_display
Commits
230e7a06
Commit
230e7a06
authored
Oct 09, 2012
by
codycraven
Browse files
Issue #1807682 by codycraven: Fixed strict warning, function result passed by reference.
parent
1bf18e97
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
CHANGELOG.txt
CHANGELOG.txt
+2
-0
plugins/content_types/term_context/term_page_display.inc
plugins/content_types/term_context/term_page_display.inc
+2
-1
No files found.
CHANGELOG.txt
View file @
230e7a06
Taxonomy Display 7.x-1.x, YYYY-MM-DD
------------------------------------
Issue #1807682 by codycraven: Fixed strict warning, function result passed by
reference.
Issue #1410576 by jonhattan: Added Features export integration.
Issue #1693978 by Saxxing: Fix ability for breadcrumbs to be translated.
Issue #1425648 by codycraven: Added README.txt per user request.
...
...
plugins/content_types/term_context/term_page_display.inc
View file @
230e7a06
...
...
@@ -30,7 +30,8 @@ function taxonomy_display_term_page_display_content_type_render($subtype, $conf,
if
(
$term
)
{
$block
->
title
=
$term
->
name
;
$block
->
delta
=
$term
->
tid
;
$block
->
content
=
drupal_render
(
taxonomy_display_taxonomy_term_page
(
$term
));
$term_page
=
taxonomy_display_taxonomy_term_page
(
$term
);
$block
->
content
=
drupal_render
(
$term_page
);
if
(
user_access
(
'administer taxonomy'
))
{
$block
->
admin_links
[
'update'
]
=
array
(
...
...
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