jordandelozier / wysibb

WYSIWYG BBcode editor
http://www.wysibb.com
246 stars 86 forks source link

Problem with encode url #190

Open pionas opened 6 years ago

pionas commented 6 years ago

Hi!,

i had a problem with special urls ex: http://www.mywebsite.com/search/?option[1]=Country&option[2]=City&username=pionas

In wbbInsertCallback I added:

if (command == "link" && paramobj['url'] != undefined) {
   paramobj['url'] = encodeURI(paramobj['url']);
}

it is works but i thinks is not the best idea ;)