Bug Tracker

Opened 15 years ago

Closed 15 years ago

Last modified 15 years ago

#3154 closed bug (fixed)

field name "split" breaks add(form.elements)

Reported by: joern Owned by: flesler
Priority: major Milestone: 1.3
Component: core Version: 1.2.6
Keywords: Cc:
Blocked by: Blocking:

Description (last modified by joern)

A validation plugin user reported that giving a field the name-attribute "split" breaks the validation. Eventually I found out that this causes $([]).add(form.elements) to return a nested array (instead of just a flat one), eg.

[[input]] instead of [input]

(think array == jQuery object)

I have no idea whats causing that. A patch with a testcase is attached.

Attachments (1)

split-elements-testcase.diff (1.8 KB) - added by joern 15 years ago.

Download all attachments as: .zip

Change History (5)

Changed 15 years ago by joern

comment:1 Changed 15 years ago by joern

Description: modified (diff)

comment:2 Changed 15 years ago by flesler

Status: newassigned

The reason is .split is used to detect strings on makeArray. We'll look into this.

comment:3 Changed 15 years ago by flesler

Resolution: fixed
Status: assignedclosed

Fixed at [5828].

comment:4 Changed 15 years ago by flesler

Fixed [5828] on [5829]. I put 'function' instead of 'string'.

Note: See TracTickets for help on using tickets.