Changes done on the Mac.
[cocanwiki.git] / scripts / logout.ml
index 400e140..7544a57 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.7 2006/03/27 18:09:46 rich Exp $
+ * $Id: logout.ml,v 1.8 2006/03/28 13:20:00 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,10 +37,7 @@ let run r (q : cgi) dbh hostid _ user =
   (match user with
        Anonymous -> ()
      | User (userid, _, _, _) ->
-        let sth = dbh#prepare_cached "delete from usercookies
-                                        where userid = ?" in
-        sth#execute [Some userid];
-
+        PGSQL(dbh) "delete from usercookies where userid = $userid" in
         PGOCaml.commit dbh
   );