X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;ds=sidebyside;f=scripts%2Fedit.ml;h=0a07c465666472f6698ae788bc92c4cd6f0888da;hb=7ef3a34598e4f7b50b3ee1a8c34bbdf11c9352f6;hp=cede68b7606b80b8e96efccd6487cd8389b5a15b;hpb=4f0fd36c2c8422c051b955216f896eddcc557d1d;p=cocanwiki.git diff --git a/scripts/edit.ml b/scripts/edit.ml index cede68b..0a07c46 100644 --- a/scripts/edit.ml +++ b/scripts/edit.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.ml,v 1.12 2004/09/24 15:53:57 rich Exp $ + * $Id: edit.ml,v 1.15 2004/10/07 11:36:46 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 @@ -392,7 +392,7 @@ let run r (q : cgi) (dbh : Dbi.connection) hostid {hostname = hostname} user = let sth = dbh#prepare_cached "set constraints pages_redirect_cn, sitemenu_url_cn, - page_emails_url_cn deferred" in + page_emails_url_cn, links_from_cn deferred" in sth#execute []; (* Mark the old page as deleted. NB. There is a small race @@ -450,6 +450,9 @@ let run r (q : cgi) (dbh : Dbi.connection) hostid {hostname = hostname} user = `String content]) model.contents; + (* Keep the links table in synch. *) + Cocanwiki_links.update_links_for_page dbh hostid url; + (* Commit changes to the database. *) dbh#commit ();