Change subject line so it shows the name of the site.
[cocanwiki.git] / scripts / edit_page_css_form.ml
index d58c641..25f317b 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: edit_page_css_form.ml,v 1.7 2006/03/27 18:09:46 rich Exp $
+ * $Id: edit_page_css_form.ml,v 1.8 2006/03/27 19:10:29 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
@@ -32,15 +32,12 @@ let run r (q : cgi) dbh hostid _ _ =
 
   let page = q#param "page" in
 
-  let sth = dbh#prepare_cached "select css from pages
-                                 where hostid = ? and url = ?" in
-  sth#execute [Some hostid; Some page];
+  let css = List.hd (
+    PGSQL(dbh) "select css from pages
+                 where hostid = $hostid and url = $page"
+  ) in
 
-  let css =
-    match sth#fetch1 () with
-      | [ None ] -> ""
-      | [ Some css ] -> css
-      | _ -> assert false in
+  let css = match css with None -> "" | Some css -> css in
 
   template#set "page" page;
   template#set "css" css;