Closed (fixed)
Project:
Panels
Version:
6.x-3.2
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
22 Oct 2009 at 21:11 UTC
Updated:
26 Jan 2010 at 23:20 UTC
Jump to comment: Most recent file
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";
?>
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | panels-612116.patch | 817 bytes | jonskulski |
Comments
Comment #1
jonskulski commentedHere is a patch that runs $content->links through theme('links')
Comment #2
merlinofchaos commentedI remember wondering about that when I committed it. I should have checked more carefully.