Although the scrolltext feature works as expected, it lacks language support. This is a must have for this module.

Comments

ianp-1’s picture

I have patched mine by replacing the following in scrolltext.module :

$sql = "SELECT n.title, n.nid FROM {node} n WHERE n.status = 1 and n.type IN ($scrolltext_nodetype) "

With:

//gives us access to the language variables
global $language;
$sql = "SELECT n.title, n.nid FROM {node} n WHERE n.status = 1 and n.language = '$language->language' and n.type IN ($scrolltext_nodetype) "

smilterman’s picture

I tried this but when I replace it, scrolltext disappears.
Any suggestions?

Thnx

drupalnesia’s picture

7.x-1.0-alpha3: Support Views as ScrollText source

D7 version of ScrollText supports Views, so this issue automatically solved. I will take a look for D6 version.