About half way through switching cocanwiki to using the new PG interface.
[cocanwiki.git] / scripts / edit_file.ml
index 98e8a97..230e1ed 100644 (file)
@@ -1,7 +1,7 @@
 (* COCANWIKI - a wiki written in Objective CAML.
  * Written by Richard W.M. Jones <rich@merjis.com>.
  * Copyright (C) 2004 Merjis Ltd.
- * $Id: edit_file.ml,v 1.1 2004/11/01 17:05:14 rich Exp $
+ * $Id: edit_file.ml,v 1.3 2005/11/24 14:54:11 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
@@ -45,7 +45,7 @@ let run r (q : cgi) (dbh : Dbi.connection) hostid {hostname = hostname} user =
 
   (* Email notify. *)
   let subject = "Description fields on file #" ^
-               string_of_int id ^ " where changed." in
+               string_of_int id ^ " were changed." in
   let body = fun () -> "Page: http://" ^ hostname ^ "/_files" in
 
   email_notify ~body ~subject ~user dbh hostid;
@@ -55,7 +55,7 @@ let run r (q : cgi) (dbh : Dbi.connection) hostid {hostname = hostname} user =
 
   let buttons = [ ok_button "/_files" ] in
   ok ~title:"Description fields updated" ~buttons
-    q "The description fields were updated."
+    dbh hostid q "The description fields were updated."
 
 let () =
   register_script ~restrict:[CanEdit] run