From: rich Date: Mon, 4 Oct 2004 14:46:51 +0000 (+0000) Subject: When copying a template during site creation, force the hosts.is_template X-Git-Url: http://git.annexia.org/?a=commitdiff_plain;h=2b332786c6f216c5e2e72cc1596ba4c66b5aa2a4;hp=1d0ea4e5935c9294e7f69c49561f9486a34697da;p=cocanwiki.git When copying a template during site creation, force the hosts.is_template feature to false. --- diff --git a/scripts/admin/create_host.ml b/scripts/admin/create_host.ml index 9cf2546..ff41490 100644 --- a/scripts/admin/create_host.ml +++ b/scripts/admin/create_host.ml @@ -1,7 +1,7 @@ (* COCANWIKI - a wiki written in Objective CAML. * Written by Richard W.M. Jones . * Copyright (C) 2004 Merjis Ltd. - * $Id: create_host.ml,v 1.5 2004/09/25 12:44:36 rich Exp $ + * $Id: create_host.ml,v 1.6 2004/10/04 14:46:51 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 @@ -107,6 +107,12 @@ let run r = ) ) (List.combine names row); + (* Force new host.is_template field to false. *) + let sth = + dbh#prepare_cached + "update hosts set is_template = false where id = ?" in + sth#execute [`Int hostid]; + (* Copy pages. *) let sth = dbh#prepare_cached