• I changed JS function _doTopicRSSLink(id)

    By Craig Vertigan 2 decades ago

    I changed this function to return an empty string if onimod_rss=="NO" so that it doesn't return "undefined" and add that after the subject in the main topic post



    function _doTopicRSSLink(id) {

    if (onimod_rss==&quot;YES&quot;)<br/>
    {<br/>
        return '&lt;A HREF=&quot;/'+onimod_webdbname+'/rssfeed.xml?OpenPage&amp;MainId='+id+'&quot; alt=&quot;'+text_rsstopic+'&quot; title=&quot;'+text_rsstopic+'&quot;&gt;&lt;img src=&quot;rss.gif&quot; border=0&gt;&lt;/a&gt;';<br/>
    }<br/>
    else<br/>
        return '';<br/>
    

    }