Modified all scripts with appropriate restrictions based on
[cocanwiki.git] / scripts / delete_image.ml
index 04c7f6f..aa3bb1d 100644 (file)
@@ -1,7 +1,7 @@
 (* COCANWIKI scripts.
  * Written by Richard W.M. Jones <rich@merjis.com>.
  * Copyright (C) 2004 Merjis Ltd.
- * $Id: delete_image.ml,v 1.2 2004/09/07 13:40:10 rich Exp $
+ * $Id: delete_image.ml,v 1.4 2004/09/08 09:54:28 rich Exp $
  *)
 
 open Apache
@@ -13,8 +13,6 @@ open Cocanwiki
 open Cocanwiki_ok
 open Cocanwiki_emailnotify
 
-open Merjisforwiki
-
 let run r (q : cgi) (dbh : Dbi.connection) (hostid, hostname, _) _ =
   let id = int_of_string (q#param "id") in
 
@@ -42,4 +40,4 @@ let run r (q : cgi) (dbh : Dbi.connection) (hostid, hostname, _) _ =
     q#redirect ("http://" ^ hostname ^ "/_images")
 
 let () =
-  register_script run
+  register_script ~restrict:[CanEdit] run