Index: openacs-4/contrib/obsolete-packages/bboard/sql/postgresql/bboard-drop.sql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/obsolete-packages/bboard/sql/postgresql/bboard-drop.sql,v
diff -u -r1.1 -r1.2
--- openacs-4/contrib/obsolete-packages/bboard/sql/postgresql/bboard-drop.sql	29 Jun 2001 20:31:14 -0000	1.1
+++ openacs-4/contrib/obsolete-packages/bboard/sql/postgresql/bboard-drop.sql	29 Jun 2001 20:42:16 -0000	1.2
@@ -24,7 +24,7 @@
 create function inline_0 ()
 returns integer as '
 
-    raise NOTICE ''currently it is impossible to delete multiple threads within a transaction.  please ensure you've removed all forums through the admin interface before you try to drop the package.''
+    raise NOTICE ''currently it is impossible to delete multiple threads within a transaction.  please ensure you have removed all forums through the admin interface before you try to drop the package.''
 
 ' language 'plpgsql';
 
@@ -88,8 +88,8 @@
 
 -- Drop object type metadata
 begin;
-    select acs_object_type__drop_type ('bboard_forum');
-    select acs_object_type__drop_type ('bboard_category');
+    select acs_object_type__drop_type ('bboard_forum', 'f');
+    select acs_object_type__drop_type ('bboard_category', 'f');
 end;