From: Brion Vibber Date: Sat, 31 Jul 2004 22:10:29 +0000 (+0000) Subject: Fix fatal error from typo X-Git-Tag: 1.5.0alpha1~2553 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=b48611025ec5135c2c4601954aac051a51d4017f;p=lhc%2Fweb%2Fwiklou.git Fix fatal error from typo --- diff --git a/includes/QueryPage.php b/includes/QueryPage.php index 4ed28cb220..e6173ad99f 100644 --- a/includes/QueryPage.php +++ b/includes/QueryPage.php @@ -112,7 +112,7 @@ class QueryPage { } } if( $wgMiserMode || $recache ) { - $type = $dbr->strencdode( $sname ); + $type = $dbr->strencode( $sname ); $sql = "SELECT qc_type as type, qc_namespace as namespace,qc_title as title, qc_value as value FROM $querycache WHERE qc_type='$type'";