X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=scripts%2Fedit_host_settings.ml;h=135bd3086185a8e551c8bc2c00ce4dc0f52339b3;hb=a91aac39ca718af3ad1f446742c3d200da60f4b6;hp=e51f320db545b711b3f548db7fd6ee1221887f14;hpb=6b0b6830a2e784eee99dcd1b1a3cb8b44e27c765;p=cocanwiki.git diff --git a/scripts/edit_host_settings.ml b/scripts/edit_host_settings.ml index e51f320..135bd30 100644 --- a/scripts/edit_host_settings.ml +++ b/scripts/edit_host_settings.ml @@ -1,7 +1,7 @@ (* COCANWIKI - a wiki written in Objective CAML. * Written by Richard W.M. Jones . * Copyright (C) 2004 Merjis Ltd. - * $Id: edit_host_settings.ml,v 1.2 2004/09/23 11:56:47 rich Exp $ + * $Id: edit_host_settings.ml,v 1.6 2004/10/10 16:14:43 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 @@ -40,6 +40,10 @@ let run r (q : cgi) (dbh : Dbi.connection) hostid { hostname = hostname } _ = let create_account_anon = q#param_true "create_account_anon" in let theme_css = q#param "theme_css" in let feedback_email = q#param "feedback_email" in + let mailing_list = q#param_true "mailing_list" in + let search_box = q#param_true "search_box" in + let navigation = q#param_true "navigation" in + let view_anon = q#param_true "view_anon" in let theme_css = if theme_css = "" then `Null else `String theme_css in let feedback_email = @@ -48,10 +52,12 @@ let run r (q : cgi) (dbh : Dbi.connection) hostid { hostname = hostname } _ = (* Update the database. *) let sth = dbh#prepare_cached "update hosts set edit_anon = ?, create_account_anon = ?, theme_css = ?, - feedback_email = ? + feedback_email = ?, mailing_list = ?, + search_box = ?, navigation = ?, view_anon = ? where id = ?" in sth#execute [`Bool edit_anon; `Bool create_account_anon; - theme_css; feedback_email; + theme_css; feedback_email; `Bool mailing_list; `Bool search_box; + `Bool navigation; `Bool view_anon; `Int hostid]; dbh#commit ();