Why is it that partial matches are being converted with the filter/replacement characters?
I'm trying to keep it so that threads with ad, ads, advertising are all converted to advertisement. So I set up a replacement like so:
Code:
'ad'=>'advertisement'
'ads'=>'advertisement'
'advertising'=>'advertisement'
Unfortunately, it converts even on a partial match. For example, the word thre
ad in the title will add a tag entitled: thre
advertisement. How can I set it to only convert on exact matches, or is this not possible?
Thanks. Great mod, otherwise.