Change subject line so it shows the name of the site.
[cocanwiki.git] / scripts / undelete_file_form.ml
index 328d6ac..af52048 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: undelete_file_form.ml,v 1.8 2006/03/27 18:09:47 rich Exp $
+ * $Id: undelete_file_form.ml,v 1.9 2006/03/28 16:24:08 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
@@ -32,16 +32,15 @@ let run r (q : cgi) dbh hostid _ _ =
 
   let id = Int32.of_string (q#param "id") in
 
-  let sth = dbh#prepare_cached "select name, name_deleted
-                                  from files
-                                 where hostid = ? and id = ?" in
-  sth#execute [Some hostid; Some id];
+  let rows = PGSQL(dbh)
+    "select name, name_deleted from files
+      where hostid = $hostid and id = $id" in
 
   let name =
-    match sth#fetch1 () with
-       [ Some name; None]
-      | [ None; Some name] -> name
-      | _ -> assert false in
+    match rows with
+    | [ Some name, None]
+    | [ None, Some name] -> name
+    | _ -> assert false in
 
   template#set "id" (Int32.to_string id);
   template#set "name" name;