From: Mr. E23 Date: Mon, 5 Jan 2004 23:15:11 +0000 (+0000) Subject: Minor fix X-Git-Tag: 1.3.0beta1~1193 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/?a=commitdiff_plain;h=46262fe2e079ffbcc0fb5f49c19255b8697b3c4f;p=lhc%2Fweb%2Fwiklou.git Minor fix --- 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); } }