From a9b49597b393ac675668403740b0587d63ea72ec Mon Sep 17 00:00:00 2001 From: JT Smith Date: Sat, 5 Apr 2003 14:54:29 +0000 Subject: [PATCH] fixed bug 715066 --- docs/upgrades/upgrade_5.2.2-5.2.3.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/upgrades/upgrade_5.2.2-5.2.3.sql b/docs/upgrades/upgrade_5.2.2-5.2.3.sql index 3a572e2eb..c0a3d27d8 100644 --- a/docs/upgrades/upgrade_5.2.2-5.2.3.sql +++ b/docs/upgrades/upgrade_5.2.2-5.2.3.sql @@ -21,6 +21,7 @@ delete from international where languageId=2 and namespace='WebGUI' and internat insert into international (internationalId,languageId,namespace,message,lastUpdated) values (891,2,'WebGUI','Nur Makros blockieren.', 1049099974); delete from international where languageId=2 and namespace='WebGUI' and internationalId=526; insert into international (internationalId,languageId,namespace,message,lastUpdated) values (526,2,'WebGUI','JavaScript entfernen und blockiere Makros.', 1049099918); - +alter table MailForm_field change validation validation varchar(255) not null default 'none'; +update MailForm_field set validation='none' where validation='';