From: Raimond Spekking Date: Sun, 9 Nov 2008 21:26:14 +0000 (+0000) Subject: self revert r43332 due to a PHP Strict Standards error X-Git-Tag: 1.31.0-rc.0~44387 X-Git-Url: http://git.cyclocoop.org/%27-%20%20.%20url_absolue%28find_in_path%28%27spip_style.css%27%29%29%20%20%20.%20url_absolue%28find_in_path%28%27prive/spip_style.css%27%29%29%20.%20%27?a=commitdiff_plain;h=56f811163b24c57b21071616214fc756de76bd4c;p=lhc%2Fweb%2Fwiklou.git self revert r43332 due to a PHP Strict Standards error --- diff --git a/includes/ChangesList.php b/includes/ChangesList.php index 05ca5c1ef5..c438b58a78 100644 --- a/includes/ChangesList.php +++ b/includes/ChangesList.php @@ -186,8 +186,11 @@ class ChangesList { } else { $articlelink = ' '. $this->skin->makeKnownLinkObj( $rc->getTitle(), '', $params ); } - $articlelink = EnhancedChangesList::maybeWatchedLink( $articlelink, $watched ); - + if( $watched ) { + $articlelink = "{$articlelink}"; + } else { + $articlelink = '' . $articlelink . ''; + } global $wgContLang; $articlelink .= $wgContLang->getDirMark();