Closed tghilardi closed 7 years ago
Yes, this plugin only for visualization, in the hope that, if JavaScript is disabled, user can keep adding tags as comma–separated list of words. You can later explode it in the backend:
$_POST['tags'] = explode(', ', $_POST['tags']);
Oh, so the tags becomes testtest2
.
Do you have any screenshot or examples about this bug? I want to close this.
tags concatenate when you send a post request to the same page.
eg: test,test2 outputs testtest2 as one tag instead of two.