X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=scripts%2Fupload_file.ml;h=543cd666864e6425347c59399f3f1e1da92619fa;hb=ec0b2fe822bac60e194044fdb7092156705e4595;hp=a6ed439b6d1f4d454c7abbb3e24af24b7dede322;hpb=6b0b6830a2e784eee99dcd1b1a3cb8b44e27c765;p=cocanwiki.git diff --git a/scripts/upload_file.ml b/scripts/upload_file.ml index a6ed439..543cd66 100644 --- a/scripts/upload_file.ml +++ b/scripts/upload_file.ml @@ -1,7 +1,7 @@ (* COCANWIKI - a wiki written in Objective CAML. * Written by Richard W.M. Jones . * Copyright (C) 2004 Merjis Ltd. - * $Id: upload_file.ml,v 1.7 2004/09/23 11:56:47 rich Exp $ + * $Id: upload_file.ml,v 1.8 2004/10/21 19:54:29 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 @@ -38,7 +38,7 @@ let is_whitespace str = Pcre.pmatch ~rex:is_ws_re str (* Valid file names. *) let file_ok_re = Pcre.regexp "^[a-z0-9][-._a-z0-9]*$" -let run r (q : cgi) (dbh : Dbi.connection) hostid { hostname = hostname } _ = +let run r (q : cgi) (dbh : Dbi.connection) hostid { hostname = hostname } user= let name = q#param "name" in let title = q#param "title" in @@ -81,7 +81,7 @@ let run r (q : cgi) (dbh : Dbi.connection) hostid { hostname = hostname } _ = let body = fun () -> "Page: http://" ^ hostname ^ "/_files" in - email_notify ~body ~subject dbh hostid; + email_notify ~body ~subject ~user dbh hostid; let buttons = [ ok_button "/_files" ] in ok ~title:"File uploaded" ~buttons