Cast required
authorJoey Schulze <joey@infodrom.org>
Sun, 6 Jul 2008 21:08:01 +0000 (21:08 +0000)
committerJoey Schulze <joey@infodrom.org>
Sun, 6 Jul 2008 21:08:01 +0000 (21:08 +0000)
src/InfoCon/account/query.wml

index bc61e7d..a1fe496 100644 (file)
@@ -75,7 +75,7 @@ input.submit:hover {
 <select id=year name=year>
 <option>
 <?
-  $query = "SELECT DISTINCT substr(datum,0,5) AS year FROM $table ORDER BY year DESC";
+  $query = "SELECT DISTINCT substr(datum::text,0,5) AS year FROM $table ORDER BY year DESC";
   $sth = pg_exec ($dbh, $query);
 
   for ($nr=0; $nr <pg_NumRows ($sth); $nr++) {