Code Duplication    Length = 5-5 lines in 2 locations

ecrire/exec/controle_forum.php 1 location

@@ 151-155 (lines=5) @@
148
	}
149
150
	if ($forum_email_auteur) {
151
		if (email_valide($forum_email_auteur))
152
			$forum_email_auteur = "<a href='mailto:"
153
			.htmlspecialchars($forum_email_auteur)
154
			."?subject=".rawurlencode($forum_titre)."'>".$forum_email_auteur
155
			."</a>";
156
		$forum_auteur .= " &mdash; $forum_email_auteur";
157
	}
158

ecrire/inc/forum.php 1 location

@@ 571-575 (lines=5) @@
568
		$res = join(' ',$formater_auteur($id_auteur));
569
	} else {
570
		if ($email_auteur) {
571
			if (email_valide($email_auteur))
572
				$email_auteur = "<a href='mailto:"
573
				.htmlspecialchars($email_auteur)
574
				."?subject=".rawurlencode($titre)."'>".$email_auteur
575
				."</a>";
576
			$auteur .= " &mdash; $email_auteur";
577
		}
578
		$res = safehtml("<span class='arial2'> / <b>$auteur</b></span>");