summaryrefslogtreecommitdiff
path: root/src/interfaces
diff options
context:
space:
mode:
authorBruce Momjian2006-02-06 02:23:17 +0000
committerBruce Momjian2006-02-06 02:23:17 +0000
commit763b9c1901cfda0db9e94cf142ba351c197ec749 (patch)
treee653c75abd4773e69c506b70d20295af650a0798 /src/interfaces
parent7d41ef1a92ff07a44930cb2dbf67d86850081b38 (diff)
Fix PQprint HTML tag, "centre" -> "center".
Diffstat (limited to 'src/interfaces')
-rw-r--r--src/interfaces/libpq/fe-print.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/interfaces/libpq/fe-print.c b/src/interfaces/libpq/fe-print.c
index f49859020b0..f546867f08d 100644
--- a/src/interfaces/libpq/fe-print.c
+++ b/src/interfaces/libpq/fe-print.c
@@ -10,7 +10,7 @@
* didn't really belong there.
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/interfaces/libpq/fe-print.c,v 1.64 2005/10/15 02:49:48 momjian Exp $
+ * $PostgreSQL: pgsql/src/interfaces/libpq/fe-print.c,v 1.64.2.1 2006/02/06 02:23:17 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -242,12 +242,12 @@ PQprint(FILE *fout, const PGresult *res, const PQprintOpt *po)
if (po->expanded && po->html3)
{
if (po->caption)
- fprintf(fout, "<centre><h2>%s</h2></centre>\n", po->caption);
+ fprintf(fout, "<center><h2>%s</h2></center>\n", po->caption);
else
fprintf(fout,
- "<centre><h2>"
+ "<center><h2>"
"Query retrieved %d rows * %d fields"
- "</h2></centre>\n",
+ "</h2></center>\n",
nTups, nFields);
}
for (i = 0; i < nTups; i++)