The help text on the quotes block says that Max Length of 0 means no limit - yet 0 causes no text to be dislayed

The reason seems to becase the views function
function quotes_block_view($delta) {
calls the theme with the teaser set to true (second parameter)
$quote = node_view($node, TRUE, FALSE, TRUE);>/code>

if I set Teaser parameter to False it works as described

$quote = node_view($node, FALSE, FALSE, TRUE);>/code>

Will this break something else or id this a bug?

Comments

ctmattice1’s picture

Check out the latest dev release and see if it solves your issue. when checking out the fix the majority of the quotes are displaying, I had a few that only showed the author in the block but that may be due to how the node was formatted originally. After doing a quick edit of the node the text did show up in the block as expected.

ctmattice1’s picture

Status: Active » Closed (fixed)