diff --git a/docs/upgrades/upgrade_5.4.4-5.5.0.sql b/docs/upgrades/upgrade_5.4.4-5.5.0.sql index 30867a229..021fc7fd6 100644 --- a/docs/upgrades/upgrade_5.4.4-5.5.0.sql +++ b/docs/upgrades/upgrade_5.4.4-5.5.0.sql @@ -58,12 +58,6 @@ create table forumRead ( primary key (userId, forumPostId) ); -create table forumBookmark ( - userId int not null, - forumPostId int not null, - primary key (userId, forumPostId) -); - create table forumThreadSubscription ( forumThreadId int not null, userId int not null, diff --git a/lib/WebGUI/Form.pm b/lib/WebGUI/Form.pm index 3b398768e..42484be84 100644 --- a/lib/WebGUI/Form.pm +++ b/lib/WebGUI/Form.pm @@ -660,12 +660,21 @@ If you want to add anything special to the form header like javascript actions o =cut sub formHeader { - my ($action, $method, $enctype); - $action = $_[0]->{action} || WebGUI::URL::page(); - $method = $_[0]->{method} || "POST"; - $enctype = $_[0]->{enctype} || "multipart/form-data"; - return '