Index: trunk/phase3/includes/Article.php |
— | — | @@ -1009,6 +1009,11 @@ |
1010 | 1010 | $wgOut->addHTML( "<h2>" . $newcomment . "</h2>\n<hr>\n" ); |
1011 | 1011 | $this->updateArticle( $s->old_text, $newcomment, 1, $this->mTitle->userIsWatching() ); |
1012 | 1012 | |
| 1013 | + global $wgEnablePersistentLC; |
| 1014 | + if ( $wgEnablePersistentLC ) { |
| 1015 | + wfQuery("DELETE FROM linkscc WHERE lcc_pageid='{$pid}'", DB_WRITE); |
| 1016 | + } |
| 1017 | + |
1013 | 1018 | $wgOut->returnToMain( false ); |
1014 | 1019 | } |
1015 | 1020 | |