Summary | Hard wrap in preference texarea breaks long URLs in IE |
Queue | Horde Framework Packages |
Queue Version | HEAD |
Type | Bug |
State | Resolved |
Priority | 1. Low |
Owners | |
Requester | jason (at) linuxbox (dot) com |
Created | 12/20/2007 (6410 days ago) |
Due | |
Updated | 12/20/2007 (6410 days ago) |
Assigned | |
Resolved | 12/20/2007 (6410 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
Type ⇒ Bug
State ⇒ Resolved
Priority ⇒ 1. Low
State ⇒ Resolved
State ⇒ Feedback
even need String::wrap() - we've removed the wrap attribute from most
other textareas. Or am I missing something?
Priority ⇒ 1. Low
Type ⇒ Enhancement
Summary ⇒ Hard wrap in preference texarea breaks long URLs in IE
Queue ⇒ Horde Framework Packages
State ⇒ New
IE inserts line break characters where the wrapping occurs before
sending the data back to the server. If a long URL is entered as part
of a user's signature, the URL is broken. Firefox does not respect
the wrap attribute and therefore does not exhibit this problem. Two
possible solutions are:
1 - Use wrap="soft" -- this will wrap in the browser, but be sent to
the server without line breaks.
2 - Don't use the wrap attribute at all (it's not part of the HTML 4
or XHTML standards) and have the wrapping done on the server side
using String::wrap which prevents breaking long words (or URLs)