From 9ef45f7514ad67944e67e943451f80ac4e416d77 Mon Sep 17 00:00:00 2001 From: rich Date: Sun, 26 Sep 2004 17:49:46 +0000 Subject: [PATCH] send_feedback_form can be used by anyone. SQL doesn't use SET AUTHORIZATION statements any more. --- Makefile | 4 ++-- scripts/send_feedback_form.ml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index d063bad..60e1fef 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.7 2004/09/20 15:34:36 rich Exp $ +# $Id: Makefile,v 1.8 2004/09/26 17:49:46 rich Exp $ include Makefile.config @@ -46,7 +46,7 @@ clean: $(MAKE) -C scripts clean cocanwiki.sql: - pg_dump -i -s cocanwiki > $@ + pg_dump --no-owner -i -s cocanwiki > $@ dist: $(MAKE) check-manifest diff --git a/scripts/send_feedback_form.ml b/scripts/send_feedback_form.ml index 7fef87e..8b0803d 100644 --- a/scripts/send_feedback_form.ml +++ b/scripts/send_feedback_form.ml @@ -1,7 +1,7 @@ (* COCANWIKI - a wiki written in Objective CAML. * Written by Richard W.M. Jones . * Copyright (C) 2004 Merjis Ltd. - * $Id: send_feedback_form.ml,v 1.1 2004/09/20 17:18:26 rich Exp $ + * $Id: send_feedback_form.ml,v 1.2 2004/09/26 17:49:46 rich Exp $ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -37,4 +37,4 @@ let run r (q : cgi) (dbh : Dbi.connection) hostid _ _ = q#template template let () = - register_script ~restrict:[CanManageUsers] run + register_script run -- 1.8.3.1