10
Well, made it work ....
2 changes I made, one of them (if not both) is doing the work ...
===========================================
edit /modules/tag/language/english/config.php
old line (24)
----------------------------
$GLOBALS["tag_delimiter"] = array(",", " ", "|", ";");
new line
---------------------------
$GLOBALS["tag_delimiter"] = array(",", "|", ";");
===========================================
edit /modules/tag/include/functions.ini.php
old line (88)
----------------------------
return array(",", " ", "|", ";");
new line
---------------------------
return array(",", "|", ";");
===========================================