|
10 | 10 | * didn't really belong there. |
11 | 11 | * |
12 | 12 | * IDENTIFICATION |
13 | | - * $PostgreSQL: pgsql/src/interfaces/libpq/fe-print.c,v 1.64 2005/10/15 02:49:48 momjian Exp $ |
| 13 | + * $PostgreSQL: pgsql/src/interfaces/libpq/fe-print.c,v 1.65 2006/02/06 02:23:07 momjian Exp $ |
14 | 14 | * |
15 | 15 | *------------------------------------------------------------------------- |
16 | 16 | */ |
@@ -242,12 +242,12 @@ PQprint(FILE *fout, const PGresult *res, const PQprintOpt *po) |
242 | 242 | if (po->expanded&&po->html3) |
243 | 243 | { |
244 | 244 | if (po->caption) |
245 | | -fprintf(fout,"<centre><h2>%s</h2></centre>\n",po->caption); |
| 245 | +fprintf(fout,"<center><h2>%s</h2></center>\n",po->caption); |
246 | 246 | else |
247 | 247 | fprintf(fout, |
248 | | -"<centre><h2>" |
| 248 | +"<center><h2>" |
249 | 249 | "Query retrieved %d rows * %d fields" |
250 | | -"</h2></centre>\n", |
| 250 | +"</h2></center>\n", |
251 | 251 | nTups,nFields); |
252 | 252 | } |
253 | 253 | for (i=0;i<nTups;i++) |
|