Add IE6- and IE7-specific stylesheets, only served to broken browsers.
[cocanwiki.git] / scripts / lib / cocanwiki_ok.ml
index 7415688..aa76f17 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: cocanwiki_ok.ml,v 1.3 2005/11/24 14:54:15 rich Exp $
+ * $Id: cocanwiki_ok.ml,v 1.4 2006/12/06 09:46:57 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,16 +30,16 @@ open Cocanwiki_template
  * Also have some standard buttons around.
  *)
 let error ?cookie ?cookies ?title ?(icon = "/_graphics/error.png")
-    ?icon_alt ?back_button ?close_button dbh hostid q message =
-  let template = get_template dbh hostid "ok_error.html" in
+    ?icon_alt ?back_button ?close_button dbh hostid q message =
+  let template = get_template dbh hostid "ok_error.html" in
   (* Set the status so scripts can determine if the request failed. *)
   Request.set_status q#request cHTTP_BAD_REQUEST;
   Template.StdPages.error ?cookie ?cookies ~template
     ?title ~icon ?icon_alt ?back_button ?close_button q message
 
 let ok ?cookie ?cookies ?title ?(icon = "/_graphics/ok.png")
-    ?icon_alt ?back_button ?close_button ?buttons dbh hostid q message =
-  let template = get_template dbh hostid "ok_error.html" in
+    ?icon_alt ?back_button ?close_button ?buttons dbh hostid q message =
+  let template = get_template dbh hostid "ok_error.html" in
   Template.StdPages.ok ?cookie ?cookies ~template
     ?title ~icon ?icon_alt ?back_button ?close_button ?buttons q message