Index: trunk/phase3/includes/Article.php |
— | — | @@ -493,8 +493,15 @@ |
494 | 494 | $sql = "UPDATE recentchanges SET rc_cur_time='{$now}' " . |
495 | 495 | "WHERE rc_cur_id=" . $this->getID(); |
496 | 496 | wfQuery( $sql, DB_WRITE, $fname ); |
497 | | - |
| 497 | + |
| 498 | + global $wgEnablePersistentLC; |
| 499 | + if ( $wgEnablePersistentLC ) { |
| 500 | + // Purge link cache for this page |
| 501 | + $pageid=$this->getID(); |
| 502 | + wfQuery("DELETE FROM linkscc WHERE lcc_pageid='{$pageid}'", DB_WRITE); |
| 503 | + } |
498 | 504 | } |
| 505 | + |
499 | 506 | if( $wgDBtransactions ) { |
500 | 507 | $sql = "COMMIT"; |
501 | 508 | wfQuery( $sql, DB_WRITE ); |