diff options
Diffstat (limited to 'Vote.php')
| -rw-r--r-- | Vote.php | 14 | 
1 files changed, 12 insertions, 2 deletions
| @@ -94,7 +94,7 @@ class VoteHooks {  		$voteText = '';  		$votes = []; -		foreach ($lines as $line) { +		foreach ($lines as $idx => $line) {  			if (array_key_exists('raw', $line)) {  				$voteText .= $line['raw'];  			} elseif (array_key_exists('error', $line)) { @@ -105,6 +105,13 @@ class VoteHooks {  				$vote = $line['vote'];  				$voteText .= '* '; +				$class = ''; +				for ($i = $idx + 1; $i < count($lines); $i++) { +					if (($lines[$i]['user'] ?? null) == $user) { +						$class = 'uncounted-vote'; +					} +				} +				$voteText .= "<span class=$class>";  				if (array_key_exists($user, $votes)) {  					if ($votes[$user] == $vote) {  						$voteText .= "(" . $msg('vote-repeated') . ') '; @@ -119,7 +126,8 @@ class VoteHooks {  				}  				$userLink = $parser->getLinkRenderer()->makeLink($line['userTitle'], $user); -				$voteText .= " --$userLink ". $line['date']->format('H:i, j F Y') . "\n"; +				$voteText .= " --$userLink ". $line['date']->format('H:i, j F Y'); +				$voteText .= "</span>\n";  			}  		} @@ -152,6 +160,8 @@ class VoteHooks {  			$parser->addTrackingCategory('pages-with-open-votes-category', $parser->getTitle());  		} +		$parser->getOutput()->addModules(['ext.vote-css']); +  		return $text;  	} | 
