Anomalie #63
Error page when too long description
| Status: | Fermé | Start: | 12/15/2009 | |
|---|---|---|---|---|
| Priority: | Normal | Due date: | ||
| Assigned to: | Étienne | % Done: | 100% |
|
| Category: | Administration | Spent time: | 0.50 hour | |
| Target version: | - |
Description
When a description exceed max character limit an error page is displayed. This must be replaced by a warning message.
History
Updated by Étienne almost 2 years ago
- % Done changed from 0 to 100
Updated by Étienne almost 2 years ago
- Status changed from Nouveau to Fermé
Before update of the code, update of the database is needed.
Execute the following statements:
ALTER TABLE main_property add column value_new text;
UPDATE main_property set value_new=value;
ALTER TABLE main_property drop column value;
ALTER TABLE main_property RENAME column value_new TO value;