All new templates. Site menu displays basically everywhere.
[cocanwiki.git] / scripts / undelete_file.ml
index 054fa55..91cd8d0 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.ml,v 1.2 2004/09/07 13:40:10 rich Exp $
+ * $Id: undelete_file.ml,v 1.5 2004/09/09 09:35:34 rich Exp $
  *)
 
 open Apache
@@ -9,13 +9,11 @@ open Registry
 open Cgi
 open Printf
 
-open Merjisforwiki
-
 open Cocanwiki
 open Cocanwiki_template
 open Cocanwiki_ok
 
-let run r (q : cgi) (dbh : Dbi.connection) (hostid, hostname, _) _ =
+let run r (q : cgi) (dbh : Dbi.connection) hostid { hostname = hostname } _ =
   let id = int_of_string (q#param "id") in
 
   if q#param_true "yes" then (
@@ -54,4 +52,4 @@ let run r (q : cgi) (dbh : Dbi.connection) (hostid, hostname, _) _ =
     q#redirect ("http://" ^ hostname ^ "/_files")
 
 let () =
-  register_script run
+  register_script ~restrict:[CanEdit] run