<?php
function cacher_pages_uniques($flux){
if ($flux['args']['type'] == 'article' AND !autoriser('configurer')) {
		$cherche = "/<span[^>]*class=('|\")icone s24 horizontale page-24.*?<\/span>/is";
		if (preg_match($cherche,$flux['data']))
			$flux['data'] = preg_replace($cherche,'', $flux['data']);
	}
	return $flux;
	}
?>