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
e98c82e6
Commit
e98c82e6
authored
Apr 15, 2007
by
Dries
Browse files
- Patch
#136202
by asimmonds: fixed indefined variable notice.
parent
840bb124
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/taxonomy/taxonomy.module
View file @
e98c82e6
...
...
@@ -1276,6 +1276,7 @@ function taxonomy_select_nodes($tids = array(), $operator = 'or', $depth = 0, $p
* taxonomy_select_nodes(), and formats each node along with a pager.
*/
function
taxonomy_render_nodes
(
$result
)
{
$output
=
''
;
if
(
db_num_rows
(
$result
)
>
0
)
{
while
(
$node
=
db_fetch_object
(
$result
))
{
$output
.
=
node_view
(
node_load
(
$node
->
nid
),
1
);
...
...
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