ENGAGE-197: Serialized query parameters in the URL are not deserialized and added to the context

Metadata

Source
ENGAGE-197
Type
Bug
Priority
Major
Status
Closed
Resolution
Fixed
Assignee
N/A
Reporter
Justin Obara
Created
2009-11-13T13:50:48.000-0500
Updated
2009-11-13T13:53:55.000-0500
Versions
  1. 0.1
Fixed Versions
  1. 0.3b
Component
  1. Kettle

Description

Serialized query parameters in the URL are not deserialized and added to the context

There is a slight error on line 36 of kettle.js where the condition for the for loop is set to i < segs instead of i < segs.length. This means that the loop terminates immediately and doesn't execute the code inside of it.

Comments

  • Justin Obara commented 2009-11-13T13:53:55.000-0500

    Resolved at r8687

    Changed the for loop condition to i < segs.length