From 048d9c3a137c24c61e75e49637614e97db9765b6 Mon Sep 17 00:00:00 2001 From: Gabriel Wicke Date: Wed, 14 Jul 2004 18:37:11 +0000 Subject: [PATCH] bug fix: missing colon caused special pages to fail --- includes/QueryPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/QueryPage.php b/includes/QueryPage.php index 77a55322ca..a79897d471 100644 --- a/includes/QueryPage.php +++ b/includes/QueryPage.php @@ -96,7 +96,7 @@ class QueryPage { $dbw->addQuotes( $row->type ) . "," . $dbw->addQuotes( $row->namespace ) . "," . $dbw->addQuotes( $row->title ) . "," . - $dbw->addQuotes( $row->value ) . ")" + $dbw->addQuotes( $row->value ) . ")"; } # Save results into the querycache table on the master -- 2.20.1