Closed (fixed)
Project:
Jquery Slideshow
Version:
5.x-1.1
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
2 Dec 2008 at 19:23 UTC
Updated:
27 Dec 2008 at 22:02 UTC
On line 41 of the module, you have:
$display_type = $teaser ? 'teaser' : 'full';
But there is no $teaser variable set in the function. I believe the code you want is:
$display_type = ($a3) ? 'teaser' : 'full';
I'd offer a patch, but first want to make sure that this really is a bug.
BTW: great module. I'm working on something very similar. I picked up some great ideas from your code. Thanks!
Comments
Comment #1
nvoyageur commentedThanks, I've updated this in the 5.x-dev version.
Comment #2
crookednumber commented