Added the framework to allow us to populate standards parts of the
[cocanwiki.git] / scripts / undelete_file_form.ml
index 6560285..ef534c2 100644 (file)
@@ -1,7 +1,7 @@
 (* COCANWIKI scripts.
  * Written by Richard W.M. Jones <rich@merjis.com>.
  * Copyright (C) 2004 Merjis Ltd.
- * $Id: undelete_file_form.ml,v 1.2 2004/09/07 13:40:10 rich Exp $
+ * $Id: undelete_file_form.ml,v 1.5 2004/09/08 15:46:53 rich Exp $
  *)
 
 open Apache
@@ -9,14 +9,12 @@ open Registry
 open Cgi
 open Printf
 
-open Merjisforwiki
-
 open Cocanwiki
 open Cocanwiki_template
 
-let template = get_template "undelete_file_form.html"
-
 let run r (q : cgi) (dbh : Dbi.connection) (hostid, _, _) _ =
+  let template = get_template dbh hostid "undelete_file_form.html" in
+
   let id = int_of_string (q#param "id") in
 
   let sth = dbh#prepare_cached "select name, name_deleted
@@ -36,4 +34,4 @@ let run r (q : cgi) (dbh : Dbi.connection) (hostid, _, _) _ =
   q#template template
 
 let () =
-  register_script run
+  register_script ~restrict:[CanEdit] run