Closed (duplicate)
Project:
Chaos Tool Suite (ctools)
Version:
7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
20 Feb 2013 at 05:11 UTC
Updated:
22 Feb 2013 at 20:40 UTC
From the Quicktabs queue:
quicktabs does not work in Panels with latest version of ctools
http://drupal.org/node/1910434
The fix to block.inc in comment #3 from that post does in fact fix the problem, but per the OP I'm not sure if this the right fix or if it needs to be fixed in Quicktabs. Here is the working fix for reference:
ctools/plugins/content_types/block/block.inc line 290:
if (!empty($block->content)) {
$block->content = filter_xss_admin($block->content);
}
to
if (!empty($block->content)) {
$block->content = filter_xss_admin(drupal_render($block->content));
}
Comments
Comment #1
merlinofchaos commented#1925018: Adding a renderable-array block to a page gives errors in the admin UI