From: Rob Church Date: Sun, 5 Feb 2006 22:59:53 +0000 (+0000) Subject: Grrr...remove duplicate $, thanks Niklas X-Git-Tag: 1.6.0~370 X-Git-Url: http://git.cyclocoop.org/%28?a=commitdiff_plain;h=7f019151635e4db108409e7afe5cb15cc3982400;p=lhc%2Fweb%2Fwiklou.git Grrr...remove duplicate $, thanks Niklas --- diff --git a/includes/LogPage.php b/includes/LogPage.php index 8251ef4ac1..825e703c46 100644 --- a/includes/LogPage.php +++ b/includes/LogPage.php @@ -181,7 +181,7 @@ class LogPage { break; case 'block': if( substr( $title->getText(), 0, 1 ) == '#' ) { - $titleLink = $$title->getText(); + $titleLink = $title->getText(); } else { $titleLink = $skin->makeLinkObj( $title, $title->getText() ); $titleLink .= ' (' . $skin->makeKnownLinkObj( Title::makeTitle( NS_SPECIAL, 'Contributions/' . urlencode( $title->getDBkey() ) ), wfMsg( 'contribslink' ) ) . ')';