Actions
Bug #2986
closedQuery text area substitudes newline with rn upon apply
Description
If I have a two line query like:
UPDATE '#__comprofiler' SET 'approved'=0 WHERE 'user_id'=[user_id];
UPDATE '#__users' SET 'block'=1 WHERE 'id'=[user_id];
after I click apply it becomes:
UPDATE '#__comprofiler' SET 'approved'=0 WHERE 'user_id'=[user_id];rnUPDATE '#__users' SET 'block'=1 WHERE 'id'=[user_id];
Updated by nant about 13 years ago
Actually the rn issue appears on all text area parameters.
Updated by krileon about 13 years ago
- Status changed from New to Resolved
- Assignee set to krileon
- Target version set to 293
- % Done changed from 0 to 100
Confirmed and fixed for next release, was due to double processing of the post variables.
Actions