While video module populates tags of embeded video from the Youtube Page, it doesn't automatically separate them with commas, making one big tag for every video
While video module populates tags of embeded video from the Youtube Page, it doesn't automatically separate them with commas, making one big tag for every video |
Problem probably is in line 194 of classes/BxVideosUploader $sTags = str_replace(", ", " ", $sTags); Will work on it and post a fix if i find...thanx! |
$sTags = str_replace(", ", " ", $sTags); i guess this deliminates commas converting them to spaces, so... we both need to take out all commas and then add them? or maybe do the exact opposite and convert all spaces to commas, this should work: $sTags = str_replace(" ", ", ", $sTags); Dolphin doesn't "see" blank tags so it should work ok |
Rules → http://www.boonex.com/terms |