I'm working on a multidomain/multilingual install of cmsms using mlecms. So far so good, i managed to get the news module working: i have a category per language and subcategories for domains. So to call the news module i specify:
Code: Select all
{* we get the domain name that i use as a subcategory *}
{assign var="website" value=$mdsite|replace:".com":""}
{* then
{news category="$lang_parent | $website"}
That works flawlessly

Now, i am trying to get some rss feeds out of this using the CGfeedmaker module. (i always trust in CG's !). Pinpointed the line in the template that calls the news module and tried the same trick:
Code: Select all
{news assign='junk' category="$lang_parent | $website"}

Tx