Subversion Repositories Applications.papyrus

Compare Revisions

Ignore whitespace Rev 831 → Rev 832

/trunk/api/text/wiki_papyrus/Render/Xhtml/Inclure.php
53,7 → 53,9
$output = '';
$contenu = file_get_contents($href);
$tab_matches='';
preg_match($this->conf['sites'][$site]['preg'], $contenu, $tab_matches);
$tab_encodage='';
preg_match('/<meta +http-equiv="Content-Type" +content="text\/html; *charset=(.+)"\/>/Ui', $contenu, $tab_encodage);
if (preg_match('/^(?:iso-8859-1|iso-8859-15)$/i', $this->conf['encodage']) && preg_match('/utf-8/i', $tab_encodage[1])) {
$output = utf8_decode($tab_matches[1]);