From 01ab84f67f183270e6d83ae203c5c2879145021c Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Mon, 10 Jul 2006 09:13:50 +0000 Subject: [PATCH] Fix #6561: "frame" and "border" and "rules" listed twice as table attributes --- includes/Sanitizer.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/Sanitizer.php b/includes/Sanitizer.php index f5a24dfa33..234531e471 100644 --- a/includes/Sanitizer.php +++ b/includes/Sanitizer.php @@ -1082,9 +1082,9 @@ class Sanitizer { # 11.2.1 'table' => array_merge( $common, array( 'summary', 'width', 'border', 'frame', - 'rules', 'cellspacing', 'cellpadding', - 'align', 'bgcolor', 'frame', 'rules', - 'border' ) ), + 'rules', 'cellspacing', 'cellpadding', + 'align', 'bgcolor', 'rules', + ) ), # 11.2.2 'caption' => array_merge( $common, array( 'align' ) ), -- 2.20.1