All new templates. Site menu displays basically everywhere.
[cocanwiki.git] / scripts / images.ml
index 30f585f..69703cd 100644 (file)
@@ -1,7 +1,7 @@
 (* COCANWIKI scripts.
  * Written by Richard W.M. Jones <rich@merjis.com>.
  * Copyright (C) 2004 Merjis Ltd.
- * $Id: images.ml,v 1.3 2004/09/07 14:58:34 rich Exp $
+ * $Id: images.ml,v 1.6 2004/09/09 09:35:33 rich Exp $
  *)
 
 open Apache
@@ -12,9 +12,9 @@ open Printf
 open Cocanwiki
 open Cocanwiki_template
 
-let template = get_template "images.html"
+let run r (q : cgi) (dbh : Dbi.connection) hostid _ _ =
+  let template = get_template dbh hostid "images.html" in
 
-let run r (q : cgi) (dbh : Dbi.connection) (hostid, _, _) _ =
   let deleted = q#param_true "deleted" in
   template#conditional "deleted" deleted;
 
@@ -68,4 +68,4 @@ let run r (q : cgi) (dbh : Dbi.connection) (hostid, _, _) _ =
   q#template template
 
 let () =
-  register_script run
+  register_script ~restrict:[CanEdit] run