It looks like that module picks up titles of the articles regardless if it has been published yet and therefore misleads the user.

Is there a workaround for it?

Thanks,
Michael

Comments

pvanhorn’s picture

Status: Active » Needs review

Try the Patch in http://drupal.org/node/245044

or at least change the line
$sql = "SELECT n.title, n.nid FROM {node} n WHERE n.type IN ($scrolltext_nodetype) "
to
$sql = "SELECT n.title, n.nid FROM {node} n WHERE n.status = 1 and n.type IN ($scrolltext_nodetype) "

drupalnesia’s picture

Status: Needs review » Closed (fixed)

Also tahnks to kingandy.
Fixed on 5.x-1.2