Closed (fixed)
Project:
Quotes
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
12 Mar 2011 at 23:12 UTC
Updated:
14 Aug 2011 at 14:01 UTC
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
Comment #1
ctmattice1 commentedCheck 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.
Comment #2
ctmattice1 commented