Procházet zdrojové kódy

HTML texts: support of float (left/right) in the inline style tags.

git-svn-id: http://svn.code.sf.net/p/itop/code/trunk@4061 a333f486-631f-4898-b8df-5754b55c2be0
dflaven před 9 roky
rodič
revize
5da64f60e2
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      core/htmlsanitizer.class.inc.php

+ 1 - 1
core/htmlsanitizer.class.inc.php

@@ -191,7 +191,7 @@ class HTMLDOMSanitizer extends HTMLSanitizer
 	);
 	
 	protected static $aStylesWhiteList = array(
-		'background-color', 'color', 'font', 'font-style', 'font-size', 'font-family', 'padding', 'margin', 'border', 'cellpadding', 'cellspacing', 'bordercolor', 'border-collapse', 'width', 'height',
+		'background-color', 'color', 'float', 'font', 'font-style', 'font-size', 'font-family', 'padding', 'margin', 'border', 'cellpadding', 'cellspacing', 'bordercolor', 'border-collapse', 'width', 'height',
 	);
 	
 	public function DoSanitize($sHTML)