X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=scripts%2Flib%2Fcocanwiki.ml;h=33eb3b5ebbb45d2bccc3183cd93b11f2580aab17;hb=295f2cde3f43ccf7f775d39b95925e10aa4c37cb;hp=38480bac7aa20b9450ef48c611bfda44d2a7e8bc;hpb=fed8bae623ae58ec83206e53be5eb7ed119ce875;p=cocanwiki.git diff --git a/scripts/lib/cocanwiki.ml b/scripts/lib/cocanwiki.ml index 38480ba..33eb3b5 100644 --- a/scripts/lib/cocanwiki.ml +++ b/scripts/lib/cocanwiki.ml @@ -1,7 +1,7 @@ (* COCANWIKI - a wiki written in Objective CAML. * Written by Richard W.M. Jones . * Copyright (C) 2004 Merjis Ltd. - * $Id: cocanwiki.ml,v 1.4 2004/11/10 16:52:04 rich Exp $ + * $Id: cocanwiki.ml,v 1.5 2005/03/31 14:24:04 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 @@ -154,8 +154,8 @@ let register_script ?(restrict = []) ?(anonymous = true) run = *) if q#param_exists "cookie" then ( let value = q#param "cookie" in - let cookie = Cookie.cookie ~name:"auth" ~value ~path:"/" () in - Table.set (Request.headers_out r) "Set-Cookie" cookie#as_string; + let cookie = Cookie.cookie "auth" value ~path:"/" in + Table.set (Request.headers_out r) "Set-Cookie" cookie#to_string; value ) else ( (* Normal cookie, from the headers. *)