Well, this is how I got all tags that were sent by browser as tags[]:

entry.tags = App.request.form.getAll("tags[]");

I believe that the correct and obvious way for it should be

entry.tags = App.request.form.getAll("tags");

On Thu, 18 Sep 2014 15:59:35 +0200, Sönke Ludwig wrote:

Am 15.09.2014 12:51, schrieb Maaaks:

Subj.

Is it bug or feature? If feature, meybe it is worth mentioning in documentation?

Can you provide a little more context of where this happens? In
HTTPServerRequest.form, all parameters should be stored as they come
from the browser. For fields with multiple values, .getAll(name) can
be used to read all of them.