X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=scripts%2Fstats.ml;fp=scripts%2Fstats.ml;h=1369474c1dab77903a67dde4a0059cea54b58444;hb=ae2b49ecd15143bb99835f227a08fc49d35f59b9;hp=3d29afbcb2a8886f53057afaf518db37b0ec76aa;hpb=7c61259403b6ecfad9d7924f319bb9dc3d252e17;p=cocanwiki.git diff --git a/scripts/stats.ml b/scripts/stats.ml index 3d29afb..1369474 100644 --- a/scripts/stats.ml +++ b/scripts/stats.ml @@ -1,7 +1,7 @@ (* COCANWIKI - a wiki written in Objective CAML. * Written by Richard W.M. Jones . * Copyright (C) 2004 Merjis Ltd. - * $Id: stats.ml,v 1.2 2004/10/07 16:54:24 rich Exp $ + * $Id: stats.ml,v 1.3 2004/10/23 16:34:58 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 @@ -30,7 +30,8 @@ open Cocanwiki open Cocanwiki_template open Cocanwiki_server_settings -let run r (q : cgi) (dbh : Dbi.connection) hostid { hostname = hostname } _ = +let run r (q : cgi) (dbh : Dbi.connection) hostid + { canonical_hostname = canonical_hostname } _ = let template = get_template dbh hostid "stats.html" in let page = q#param "page" in @@ -64,7 +65,7 @@ let run r (q : cgi) (dbh : Dbi.connection) hostid { hostname = hostname } _ = template#set "page" page; template#set "url" url; template#set "hash" h; - template#set "hostname" hostname; + template#set "hostname" canonical_hostname; q#template template