Posted by jonskulski on October 22, 2009 at 9:11pm
| Project: | Panels |
| Version: | 6.x-3.2 |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed (fixed) |
Issue Summary
I'm actually not sure if this is a bug or not, but I would assume it's an oversight.
In the new panel-pane.tpl.php preprocess (line 1035) function it is defined
<?php
$vars['links'] = !empty($content->links) ? implode(' ', $content->links) : '';
?>WHERE AS, in display-render.inc in theme function (panels 3.0)
<?php
$output .= "<div class=\"links\">" . theme('links', $content->links) . "</div>\n";
?>
Comments
#1
Here is a patch that runs $content->links through theme('links')
#2
I remember wondering about that when I committed it. I should have checked more carefully.
#3
Automatically closed -- issue fixed for 2 weeks with no activity.