From 46262fe2e079ffbcc0fb5f49c19255b8697b3c4f Mon Sep 17 00:00:00 2001 From: "Mr. E23" Date: Mon, 5 Jan 2004 23:15:11 +0000 Subject: [PATCH] Minor fix --- includes/LinkCache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/LinkCache.php b/includes/LinkCache.php index ba58e2c9b9..3c685ef997 100644 --- a/includes/LinkCache.php +++ b/includes/LinkCache.php @@ -318,7 +318,7 @@ class LinkCache { # $pid is a page id /* static */ function linksccClearPage( $pid ){ - $id = intval( $pid ); + $pid = intval( $pid ); wfQuery("DELETE FROM linkscc WHERE lcc_pageid='{$pid}'", DB_WRITE); } } -- 2.20.1