Browse Source

Minor - Format code in attributes

Angel Fernando Quiroz Campos 6 years ago
parent
commit
5447fe7323
1 changed files with 1 additions and 1 deletions
  1. 1 1
      main/inc/lib/pear/HTML/Common.php

+ 1 - 1
main/inc/lib/pear/HTML/Common.php

@@ -143,7 +143,7 @@ class HTML_Common
             foreach ($attributes as $key => $value) {
             	// Modified by Ivan Tcholakov, 16-MAR-2010
                 $value = @htmlspecialchars($value, ENT_COMPAT, $charset);
-                $strAttr .= ' ' . $key . '= "' . $value. '"';
+                $strAttr .= ' ' . $key . '="' . $value. '"';
             }
         }