Scripts updated to use new PG interface.
[cocanwiki.git] / scripts / logout.ml
index 7544a57..0ec1952 100644 (file)
@@ -1,7 +1,7 @@
 (* COCANWIKI - a wiki written in Objective CAML.
  * Written by Richard W.M. Jones <rich@merjis.com>.
  * Copyright (C) 2004 Merjis Ltd.
- * $Id: logout.ml,v 1.8 2006/03/28 13:20:00 rich Exp $
+ * $Id: logout.ml,v 1.9 2006/03/28 16:24:07 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
@@ -37,7 +37,7 @@ let run r (q : cgi) dbh hostid _ user =
   (match user with
        Anonymous -> ()
      | User (userid, _, _, _) ->
-        PGSQL(dbh) "delete from usercookies where userid = $userid" in
+        PGSQL(dbh) "delete from usercookies where userid = $userid";
         PGOCaml.commit dbh
   );