]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-includes/kses.php
WordPress 3.3.2
[autoinstalls/wordpress.git] / wp-includes / kses.php
1 <?php
2 /**
3  * kses 0.2.2 - HTML/XHTML filter that only allows some elements and attributes
4  * Copyright (C) 2002, 2003, 2005  Ulf Harnhammar
5  *
6  * This program is free software and open source software; you can redistribute
7  * it and/or modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; either version 2 of the License,
9  * or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
14  * more details.
15  *
16  * You should have received a copy of the GNU General Public License along
17  * with this program; if not, write to the Free Software Foundation, Inc.,
18  * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  * http://www.gnu.org/licenses/gpl.html
20  *
21  * [kses strips evil scripts!]
22  *
23  * Added wp_ prefix to avoid conflicts with existing kses users
24  *
25  * @version 0.2.2
26  * @copyright (C) 2002, 2003, 2005
27  * @author Ulf Harnhammar <http://advogato.org/person/metaur/>
28  *
29  * @package External
30  * @subpackage KSES
31  *
32  */
33
34 /**
35  * You can override this in a plugin.
36  *
37  * @since 1.2.0
38  */
39 if ( ! defined( 'CUSTOM_TAGS' ) )
40         define( 'CUSTOM_TAGS', false );
41
42 if ( ! CUSTOM_TAGS ) {
43         /**
44          * Kses global for default allowable HTML tags.
45          *
46          * Can be override by using CUSTOM_TAGS constant.
47          *
48          * @global array $allowedposttags
49          * @since 2.0.0
50          */
51         $allowedposttags = array(
52                 'address' => array(),
53                 'a' => array(
54                         'class' => array (),
55                         'href' => array (),
56                         'id' => array (),
57                         'title' => array (),
58                         'rel' => array (),
59                         'rev' => array (),
60                         'name' => array (),
61                         'target' => array()),
62                 'abbr' => array(
63                         'class' => array (),
64                         'title' => array ()),
65                 'acronym' => array(
66                         'title' => array ()),
67                 'article' => array(
68                         'align' => array (),
69                         'class' => array (),
70                         'dir' => array (),
71                         'lang' => array(),
72                         'style' => array (),
73                         'xml:lang' => array(),
74                 ),
75                 'aside' => array(
76                         'align' => array (),
77                         'class' => array (),
78                         'dir' => array (),
79                         'lang' => array(),
80                         'style' => array (),
81                         'xml:lang' => array(),
82                 ),
83                 'b' => array(),
84                 'big' => array(),
85                 'blockquote' => array(
86                         'id' => array (),
87                         'cite' => array (),
88                         'class' => array(),
89                         'lang' => array(),
90                         'xml:lang' => array()),
91                 'br' => array (
92                         'class' => array ()),
93                 'button' => array(
94                         'disabled' => array (),
95                         'name' => array (),
96                         'type' => array (),
97                         'value' => array ()),
98                 'caption' => array(
99                         'align' => array (),
100                         'class' => array ()),
101                 'cite' => array (
102                         'class' => array(),
103                         'dir' => array(),
104                         'lang' => array(),
105                         'title' => array ()),
106                 'code' => array (
107                         'style' => array()),
108                 'col' => array(
109                         'align' => array (),
110                         'char' => array (),
111                         'charoff' => array (),
112                         'span' => array (),
113                         'dir' => array(),
114                         'style' => array (),
115                         'valign' => array (),
116                         'width' => array ()),
117                 'del' => array(
118                         'datetime' => array ()),
119                 'dd' => array(),
120                 'details' => array(
121                         'align' => array (),
122                         'class' => array (),
123                         'dir' => array (),
124                         'lang' => array(),
125                         'open' => array (),
126                         'style' => array (),
127                         'xml:lang' => array(),
128                 ),
129                 'div' => array(
130                         'align' => array (),
131                         'class' => array (),
132                         'dir' => array (),
133                         'lang' => array(),
134                         'style' => array (),
135                         'xml:lang' => array()),
136                 'dl' => array(),
137                 'dt' => array(),
138                 'em' => array(),
139                 'fieldset' => array(),
140                 'figure' => array(
141                         'align' => array (),
142                         'class' => array (),
143                         'dir' => array (),
144                         'lang' => array(),
145                         'style' => array (),
146                         'xml:lang' => array(),
147                 ),
148                 'figcaption' => array(
149                         'align' => array (),
150                         'class' => array (),
151                         'dir' => array (),
152                         'lang' => array(),
153                         'style' => array (),
154                         'xml:lang' => array(),
155                 ),
156                 'font' => array(
157                         'color' => array (),
158                         'face' => array (),
159                         'size' => array ()),
160                 'footer' => array(
161                         'align' => array (),
162                         'class' => array (),
163                         'dir' => array (),
164                         'lang' => array(),
165                         'style' => array (),
166                         'xml:lang' => array(),
167                 ),
168                 'form' => array(
169                         'action' => array (),
170                         'accept' => array (),
171                         'accept-charset' => array (),
172                         'enctype' => array (),
173                         'method' => array (),
174                         'name' => array (),
175                         'target' => array ()),
176                 'h1' => array(
177                         'align' => array (),
178                         'class' => array (),
179                         'id'    => array (),
180                         'style' => array ()),
181                 'h2' => array (
182                         'align' => array (),
183                         'class' => array (),
184                         'id'    => array (),
185                         'style' => array ()),
186                 'h3' => array (
187                         'align' => array (),
188                         'class' => array (),
189                         'id'    => array (),
190                         'style' => array ()),
191                 'h4' => array (
192                         'align' => array (),
193                         'class' => array (),
194                         'id'    => array (),
195                         'style' => array ()),
196                 'h5' => array (
197                         'align' => array (),
198                         'class' => array (),
199                         'id'    => array (),
200                         'style' => array ()),
201                 'h6' => array (
202                         'align' => array (),
203                         'class' => array (),
204                         'id'    => array (),
205                         'style' => array ()),
206                 'header' => array(
207                         'align' => array (),
208                         'class' => array (),
209                         'dir' => array (),
210                         'lang' => array(),
211                         'style' => array (),
212                         'xml:lang' => array(),
213                 ),
214                 'hgroup' => array(
215                         'align' => array (),
216                         'class' => array (),
217                         'dir' => array (),
218                         'lang' => array(),
219                         'style' => array (),
220                         'xml:lang' => array(),
221                 ),
222                 'hr' => array (
223                         'align' => array (),
224                         'class' => array (),
225                         'noshade' => array (),
226                         'size' => array (),
227                         'width' => array ()),
228                 'i' => array(),
229                 'img' => array(
230                         'alt' => array (),
231                         'align' => array (),
232                         'border' => array (),
233                         'class' => array (),
234                         'height' => array (),
235                         'hspace' => array (),
236                         'longdesc' => array (),
237                         'vspace' => array (),
238                         'src' => array (),
239                         'style' => array (),
240                         'width' => array ()),
241                 'ins' => array(
242                         'datetime' => array (),
243                         'cite' => array ()),
244                 'kbd' => array(),
245                 'label' => array(
246                         'for' => array ()),
247                 'legend' => array(
248                         'align' => array ()),
249                 'li' => array (
250                         'align' => array (),
251                         'class' => array ()),
252                 'menu' => array (
253                         'class' => array (),
254                         'style' => array (),
255                         'type' => array ()),
256                 'nav' => array(
257                         'align' => array (),
258                         'class' => array (),
259                         'dir' => array (),
260                         'lang' => array(),
261                         'style' => array (),
262                         'xml:lang' => array(),
263                 ),
264                 'p' => array(
265                         'class' => array (),
266                         'align' => array (),
267                         'dir' => array(),
268                         'lang' => array(),
269                         'style' => array (),
270                         'xml:lang' => array()),
271                 'pre' => array(
272                         'style' => array(),
273                         'width' => array ()),
274                 'q' => array(
275                         'cite' => array ()),
276                 's' => array(),
277                 'span' => array (
278                         'class' => array (),
279                         'dir' => array (),
280                         'align' => array (),
281                         'lang' => array (),
282                         'style' => array (),
283                         'title' => array (),
284                         'xml:lang' => array()),
285                 'section' => array(
286                         'align' => array (),
287                         'class' => array (),
288                         'dir' => array (),
289                         'lang' => array(),
290                         'style' => array (),
291                         'xml:lang' => array(),
292                 ),
293                 'strike' => array(),
294                 'strong' => array(),
295                 'sub' => array(),
296                 'summary' => array(
297                         'align' => array (),
298                         'class' => array (),
299                         'dir' => array (),
300                         'lang' => array(),
301                         'style' => array (),
302                         'xml:lang' => array(),
303                 ),
304                 'sup' => array(),
305                 'table' => array(
306                         'align' => array (),
307                         'bgcolor' => array (),
308                         'border' => array (),
309                         'cellpadding' => array (),
310                         'cellspacing' => array (),
311                         'class' => array (),
312                         'dir' => array(),
313                         'id' => array(),
314                         'rules' => array (),
315                         'style' => array (),
316                         'summary' => array (),
317                         'width' => array ()),
318                 'tbody' => array(
319                         'align' => array (),
320                         'char' => array (),
321                         'charoff' => array (),
322                         'valign' => array ()),
323                 'td' => array(
324                         'abbr' => array (),
325                         'align' => array (),
326                         'axis' => array (),
327                         'bgcolor' => array (),
328                         'char' => array (),
329                         'charoff' => array (),
330                         'class' => array (),
331                         'colspan' => array (),
332                         'dir' => array(),
333                         'headers' => array (),
334                         'height' => array (),
335                         'nowrap' => array (),
336                         'rowspan' => array (),
337                         'scope' => array (),
338                         'style' => array (),
339                         'valign' => array (),
340                         'width' => array ()),
341                 'textarea' => array(
342                         'cols' => array (),
343                         'rows' => array (),
344                         'disabled' => array (),
345                         'name' => array (),
346                         'readonly' => array ()),
347                 'tfoot' => array(
348                         'align' => array (),
349                         'char' => array (),
350                         'class' => array (),
351                         'charoff' => array (),
352                         'valign' => array ()),
353                 'th' => array(
354                         'abbr' => array (),
355                         'align' => array (),
356                         'axis' => array (),
357                         'bgcolor' => array (),
358                         'char' => array (),
359                         'charoff' => array (),
360                         'class' => array (),
361                         'colspan' => array (),
362                         'headers' => array (),
363                         'height' => array (),
364                         'nowrap' => array (),
365                         'rowspan' => array (),
366                         'scope' => array (),
367                         'valign' => array (),
368                         'width' => array ()),
369                 'thead' => array(
370                         'align' => array (),
371                         'char' => array (),
372                         'charoff' => array (),
373                         'class' => array (),
374                         'valign' => array ()),
375                 'title' => array(),
376                 'tr' => array(
377                         'align' => array (),
378                         'bgcolor' => array (),
379                         'char' => array (),
380                         'charoff' => array (),
381                         'class' => array (),
382                         'style' => array (),
383                         'valign' => array ()),
384                 'tt' => array(),
385                 'u' => array(),
386                 'ul' => array (
387                         'class' => array (),
388                         'style' => array (),
389                         'type' => array ()),
390                 'ol' => array (
391                         'class' => array (),
392                         'start' => array (),
393                         'style' => array (),
394                         'type' => array ()),
395                 'var' => array ());
396
397         /**
398          * Kses allowed HTML elements.
399          *
400          * @global array $allowedtags
401          * @since 1.0.0
402          */
403         $allowedtags = array(
404                 'a' => array(
405                         'href' => array (),
406                         'title' => array ()),
407                 'abbr' => array(
408                         'title' => array ()),
409                 'acronym' => array(
410                         'title' => array ()),
411                 'b' => array(),
412                 'blockquote' => array(
413                         'cite' => array ()),
414                 //      'br' => array(),
415                 'cite' => array (),
416                 'code' => array(),
417                 'del' => array(
418                         'datetime' => array ()),
419                 //      'dd' => array(),
420                 //      'dl' => array(),
421                 //      'dt' => array(),
422                 'em' => array (), 'i' => array (),
423                 //      'ins' => array('datetime' => array(), 'cite' => array()),
424                 //      'li' => array(),
425                 //      'ol' => array(),
426                 //      'p' => array(),
427                 'q' => array(
428                         'cite' => array ()),
429                 'strike' => array(),
430                 'strong' => array(),
431                 //      'sub' => array(),
432                 //      'sup' => array(),
433                 //      'u' => array(),
434                 //      'ul' => array(),
435         );
436
437         $allowedentitynames = array(
438                 'nbsp',    'iexcl',  'cent',    'pound',  'curren', 'yen',
439                 'brvbar',  'sect',   'uml',     'copy',   'ordf',   'laquo',
440                 'not',     'shy',    'reg',     'macr',   'deg',    'plusmn',
441                 'acute',   'micro',  'para',    'middot', 'cedil',  'ordm',
442                 'raquo',   'iquest', 'Agrave',  'Aacute', 'Acirc',  'Atilde',
443                 'Auml',    'Aring',  'AElig',   'Ccedil', 'Egrave', 'Eacute',
444                 'Ecirc',   'Euml',   'Igrave',  'Iacute', 'Icirc',  'Iuml',
445                 'ETH',     'Ntilde', 'Ograve',  'Oacute', 'Ocirc',  'Otilde',
446                 'Ouml',    'times',  'Oslash',  'Ugrave', 'Uacute', 'Ucirc',
447                 'Uuml',    'Yacute', 'THORN',   'szlig',  'agrave', 'aacute',
448                 'acirc',   'atilde', 'auml',    'aring',  'aelig',  'ccedil',
449                 'egrave',  'eacute', 'ecirc',   'euml',   'igrave', 'iacute',
450                 'icirc',   'iuml',   'eth',     'ntilde', 'ograve', 'oacute',
451                 'ocirc',   'otilde', 'ouml',    'divide', 'oslash', 'ugrave',
452                 'uacute',  'ucirc',  'uuml',    'yacute', 'thorn',  'yuml',
453                 'quot',    'amp',    'lt',      'gt',     'apos',   'OElig',
454                 'oelig',   'Scaron', 'scaron',  'Yuml',   'circ',   'tilde',
455                 'ensp',    'emsp',   'thinsp',  'zwnj',   'zwj',    'lrm',
456                 'rlm',     'ndash',  'mdash',   'lsquo',  'rsquo',  'sbquo',
457                 'ldquo',   'rdquo',  'bdquo',   'dagger', 'Dagger', 'permil',
458                 'lsaquo',  'rsaquo', 'euro',    'fnof',   'Alpha',  'Beta',
459                 'Gamma',   'Delta',  'Epsilon', 'Zeta',   'Eta',    'Theta',
460                 'Iota',    'Kappa',  'Lambda',  'Mu',     'Nu',     'Xi',
461                 'Omicron', 'Pi',     'Rho',     'Sigma',  'Tau',    'Upsilon',
462                 'Phi',     'Chi',    'Psi',     'Omega',  'alpha',  'beta',
463                 'gamma',   'delta',  'epsilon', 'zeta',   'eta',    'theta',
464                 'iota',    'kappa',  'lambda',  'mu',     'nu',     'xi',
465                 'omicron', 'pi',     'rho',     'sigmaf', 'sigma',  'tau',
466                 'upsilon', 'phi',    'chi',     'psi',    'omega',  'thetasym',
467                 'upsih',   'piv',    'bull',    'hellip', 'prime',  'Prime',
468                 'oline',   'frasl',  'weierp',  'image',  'real',   'trade',
469                 'alefsym', 'larr',   'uarr',    'rarr',   'darr',   'harr',
470                 'crarr',   'lArr',   'uArr',    'rArr',   'dArr',   'hArr',
471                 'forall',  'part',   'exist',   'empty',  'nabla',  'isin',
472                 'notin',   'ni',     'prod',    'sum',    'minus',  'lowast',
473                 'radic',   'prop',   'infin',   'ang',    'and',    'or',
474                 'cap',     'cup',    'int',     'sim',    'cong',   'asymp',
475                 'ne',      'equiv',  'le',      'ge',     'sub',    'sup',
476                 'nsub',    'sube',   'supe',    'oplus',  'otimes', 'perp',
477                 'sdot',    'lceil',  'rceil',   'lfloor', 'rfloor', 'lang',
478                 'rang',    'loz',    'spades',  'clubs',  'hearts', 'diams',
479         );
480 }
481
482 /**
483  * Filters content and keeps only allowable HTML elements.
484  *
485  * This function makes sure that only the allowed HTML element names, attribute
486  * names and attribute values plus only sane HTML entities will occur in
487  * $string. You have to remove any slashes from PHP's magic quotes before you
488  * call this function.
489  *
490  * The default allowed protocols are 'http', 'https', 'ftp', 'mailto', 'news',
491  * 'irc', 'gopher', 'nntp', 'feed', 'telnet, 'mms', 'rtsp' and 'svn'. This
492  * covers all common link protocols, except for 'javascript' which should not
493  * be allowed for untrusted users.
494  *
495  * @since 1.0.0
496  *
497  * @param string $string Content to filter through kses
498  * @param array $allowed_html List of allowed HTML elements
499  * @param array $allowed_protocols Optional. Allowed protocol in links.
500  * @return string Filtered content with only allowed HTML elements
501  */
502 function wp_kses($string, $allowed_html, $allowed_protocols = array ()) {
503         if ( empty( $allowed_protocols ) )
504                 $allowed_protocols = wp_allowed_protocols();
505         $string = wp_kses_no_null($string);
506         $string = wp_kses_js_entities($string);
507         $string = wp_kses_normalize_entities($string);
508         $allowed_html_fixed = wp_kses_array_lc($allowed_html);
509         $string = wp_kses_hook($string, $allowed_html_fixed, $allowed_protocols); // WP changed the order of these funcs and added args to wp_kses_hook
510         return wp_kses_split($string, $allowed_html_fixed, $allowed_protocols);
511 }
512
513 /**
514  * You add any kses hooks here.
515  *
516  * There is currently only one kses WordPress hook and it is called here. All
517  * parameters are passed to the hooks and expected to receive a string.
518  *
519  * @since 1.0.0
520  *
521  * @param string $string Content to filter through kses
522  * @param array $allowed_html List of allowed HTML elements
523  * @param array $allowed_protocols Allowed protocol in links
524  * @return string Filtered content through 'pre_kses' hook
525  */
526 function wp_kses_hook($string, $allowed_html, $allowed_protocols) {
527         $string = apply_filters('pre_kses', $string, $allowed_html, $allowed_protocols);
528         return $string;
529 }
530
531 /**
532  * This function returns kses' version number.
533  *
534  * @since 1.0.0
535  *
536  * @return string KSES Version Number
537  */
538 function wp_kses_version() {
539         return '0.2.2';
540 }
541
542 /**
543  * Searches for HTML tags, no matter how malformed.
544  *
545  * It also matches stray ">" characters.
546  *
547  * @since 1.0.0
548  *
549  * @param string $string Content to filter
550  * @param array $allowed_html Allowed HTML elements
551  * @param array $allowed_protocols Allowed protocols to keep
552  * @return string Content with fixed HTML tags
553  */
554 function wp_kses_split($string, $allowed_html, $allowed_protocols) {
555         global $pass_allowed_html, $pass_allowed_protocols;
556         $pass_allowed_html = $allowed_html;
557         $pass_allowed_protocols = $allowed_protocols;
558         return preg_replace_callback( '%(<!--.*?(-->|$))|(<[^>]*(>|$)|>)%', '_wp_kses_split_callback', $string );
559 }
560
561 /**
562  * Callback for wp_kses_split.
563  *
564  * @since 3.1.0
565  * @access private
566  */
567 function _wp_kses_split_callback( $match ) {
568         global $pass_allowed_html, $pass_allowed_protocols;
569         return wp_kses_split2( $match[0], $pass_allowed_html, $pass_allowed_protocols );
570 }
571
572 /**
573  * Callback for wp_kses_split for fixing malformed HTML tags.
574  *
575  * This function does a lot of work. It rejects some very malformed things like
576  * <:::>. It returns an empty string, if the element isn't allowed (look ma, no
577  * strip_tags()!). Otherwise it splits the tag into an element and an attribute
578  * list.
579  *
580  * After the tag is split into an element and an attribute list, it is run
581  * through another filter which will remove illegal attributes and once that is
582  * completed, will be returned.
583  *
584  * @access private
585  * @since 1.0.0
586  * @uses wp_kses_attr()
587  *
588  * @param string $string Content to filter
589  * @param array $allowed_html Allowed HTML elements
590  * @param array $allowed_protocols Allowed protocols to keep
591  * @return string Fixed HTML element
592  */
593 function wp_kses_split2($string, $allowed_html, $allowed_protocols) {
594         $string = wp_kses_stripslashes($string);
595
596         if (substr($string, 0, 1) != '<')
597                 return '&gt;';
598         # It matched a ">" character
599
600         if ( '<!--' == substr( $string, 0, 4 ) ) {
601                 $string = str_replace( array('<!--', '-->'), '', $string );
602                 while ( $string != ($newstring = wp_kses($string, $allowed_html, $allowed_protocols)) )
603                         $string = $newstring;
604                 if ( $string == '' )
605                         return '';
606                 // prevent multiple dashes in comments
607                 $string = preg_replace('/--+/', '-', $string);
608                 // prevent three dashes closing a comment
609                 $string = preg_replace('/-$/', '', $string);
610                 return "<!--{$string}-->";
611         }
612         # Allow HTML comments
613
614         if (!preg_match('%^<\s*(/\s*)?([a-zA-Z0-9]+)([^>]*)>?$%', $string, $matches))
615                 return '';
616         # It's seriously malformed
617
618         $slash = trim($matches[1]);
619         $elem = $matches[2];
620         $attrlist = $matches[3];
621
622         if ( ! isset($allowed_html[strtolower($elem)]) )
623                 return '';
624         # They are using a not allowed HTML element
625
626         if ($slash != '')
627                 return "</$elem>";
628         # No attributes are allowed for closing elements
629
630         return wp_kses_attr( $elem, $attrlist, $allowed_html, $allowed_protocols );
631 }
632
633 /**
634  * Removes all attributes, if none are allowed for this element.
635  *
636  * If some are allowed it calls wp_kses_hair() to split them further, and then
637  * it builds up new HTML code from the data that kses_hair() returns. It also
638  * removes "<" and ">" characters, if there are any left. One more thing it does
639  * is to check if the tag has a closing XHTML slash, and if it does, it puts one
640  * in the returned code as well.
641  *
642  * @since 1.0.0
643  *
644  * @param string $element HTML element/tag
645  * @param string $attr HTML attributes from HTML element to closing HTML element tag
646  * @param array $allowed_html Allowed HTML elements
647  * @param array $allowed_protocols Allowed protocols to keep
648  * @return string Sanitized HTML element
649  */
650 function wp_kses_attr($element, $attr, $allowed_html, $allowed_protocols) {
651         # Is there a closing XHTML slash at the end of the attributes?
652
653         $xhtml_slash = '';
654         if (preg_match('%\s*/\s*$%', $attr))
655                 $xhtml_slash = ' /';
656
657         # Are any attributes allowed at all for this element?
658         if ( ! isset($allowed_html[strtolower($element)]) || count($allowed_html[strtolower($element)]) == 0 )
659                 return "<$element$xhtml_slash>";
660
661         # Split it
662         $attrarr = wp_kses_hair($attr, $allowed_protocols);
663
664         # Go through $attrarr, and save the allowed attributes for this element
665         # in $attr2
666         $attr2 = '';
667
668         $allowed_attr = $allowed_html[strtolower($element)];
669         foreach ($attrarr as $arreach) {
670                 if ( ! isset( $allowed_attr[strtolower($arreach['name'])] ) )
671                         continue; # the attribute is not allowed
672
673                 $current = $allowed_attr[strtolower($arreach['name'])];
674                 if ( $current == '' )
675                         continue; # the attribute is not allowed
676
677                 if ( ! is_array($current) ) {
678                         $attr2 .= ' '.$arreach['whole'];
679                 # there are no checks
680
681                 } else {
682                         # there are some checks
683                         $ok = true;
684                         foreach ($current as $currkey => $currval) {
685                                 if ( ! wp_kses_check_attr_val($arreach['value'], $arreach['vless'], $currkey, $currval) ) {
686                                         $ok = false;
687                                         break;
688                                 }
689                         }
690
691                         if ( strtolower($arreach['name']) == 'style' ) {
692                                 $orig_value = $arreach['value'];
693                                 $value = safecss_filter_attr($orig_value);
694
695                                 if ( empty($value) )
696                                         continue;
697
698                                 $arreach['value'] = $value;
699                                 $arreach['whole'] = str_replace($orig_value, $value, $arreach['whole']);
700                         }
701
702                         if ($ok)
703                                 $attr2 .= ' '.$arreach['whole']; # it passed them
704                 } # if !is_array($current)
705         } # foreach
706
707         # Remove any "<" or ">" characters
708         $attr2 = preg_replace('/[<>]/', '', $attr2);
709
710         return "<$element$attr2$xhtml_slash>";
711 }
712
713 /**
714  * Builds an attribute list from string containing attributes.
715  *
716  * This function does a lot of work. It parses an attribute list into an array
717  * with attribute data, and tries to do the right thing even if it gets weird
718  * input. It will add quotes around attribute values that don't have any quotes
719  * or apostrophes around them, to make it easier to produce HTML code that will
720  * conform to W3C's HTML specification. It will also remove bad URL protocols
721  * from attribute values.  It also reduces duplicate attributes by using the
722  * attribute defined first (foo='bar' foo='baz' will result in foo='bar').
723  *
724  * @since 1.0.0
725  *
726  * @param string $attr Attribute list from HTML element to closing HTML element tag
727  * @param array $allowed_protocols Allowed protocols to keep
728  * @return array List of attributes after parsing
729  */
730 function wp_kses_hair($attr, $allowed_protocols) {
731         $attrarr = array ();
732         $mode = 0;
733         $attrname = '';
734         $uris = array('xmlns', 'profile', 'href', 'src', 'cite', 'classid', 'codebase', 'data', 'usemap', 'longdesc', 'action');
735
736         # Loop through the whole attribute list
737
738         while (strlen($attr) != 0) {
739                 $working = 0; # Was the last operation successful?
740
741                 switch ($mode) {
742                         case 0 : # attribute name, href for instance
743
744                                 if (preg_match('/^([-a-zA-Z]+)/', $attr, $match)) {
745                                         $attrname = $match[1];
746                                         $working = $mode = 1;
747                                         $attr = preg_replace('/^[-a-zA-Z]+/', '', $attr);
748                                 }
749
750                                 break;
751
752                         case 1 : # equals sign or valueless ("selected")
753
754                                 if (preg_match('/^\s*=\s*/', $attr)) # equals sign
755                                         {
756                                         $working = 1;
757                                         $mode = 2;
758                                         $attr = preg_replace('/^\s*=\s*/', '', $attr);
759                                         break;
760                                 }
761
762                                 if (preg_match('/^\s+/', $attr)) # valueless
763                                         {
764                                         $working = 1;
765                                         $mode = 0;
766                                         if(FALSE === array_key_exists($attrname, $attrarr)) {
767                                                 $attrarr[$attrname] = array ('name' => $attrname, 'value' => '', 'whole' => $attrname, 'vless' => 'y');
768                                         }
769                                         $attr = preg_replace('/^\s+/', '', $attr);
770                                 }
771
772                                 break;
773
774                         case 2 : # attribute value, a URL after href= for instance
775
776                                 if (preg_match('%^"([^"]*)"(\s+|/?$)%', $attr, $match))
777                                         # "value"
778                                         {
779                                         $thisval = $match[1];
780                                         if ( in_array(strtolower($attrname), $uris) )
781                                                 $thisval = wp_kses_bad_protocol($thisval, $allowed_protocols);
782
783                                         if(FALSE === array_key_exists($attrname, $attrarr)) {
784                                                 $attrarr[$attrname] = array ('name' => $attrname, 'value' => $thisval, 'whole' => "$attrname=\"$thisval\"", 'vless' => 'n');
785                                         }
786                                         $working = 1;
787                                         $mode = 0;
788                                         $attr = preg_replace('/^"[^"]*"(\s+|$)/', '', $attr);
789                                         break;
790                                 }
791
792                                 if (preg_match("%^'([^']*)'(\s+|/?$)%", $attr, $match))
793                                         # 'value'
794                                         {
795                                         $thisval = $match[1];
796                                         if ( in_array(strtolower($attrname), $uris) )
797                                                 $thisval = wp_kses_bad_protocol($thisval, $allowed_protocols);
798
799                                         if(FALSE === array_key_exists($attrname, $attrarr)) {
800                                                 $attrarr[$attrname] = array ('name' => $attrname, 'value' => $thisval, 'whole' => "$attrname='$thisval'", 'vless' => 'n');
801                                         }
802                                         $working = 1;
803                                         $mode = 0;
804                                         $attr = preg_replace("/^'[^']*'(\s+|$)/", '', $attr);
805                                         break;
806                                 }
807
808                                 if (preg_match("%^([^\s\"']+)(\s+|/?$)%", $attr, $match))
809                                         # value
810                                         {
811                                         $thisval = $match[1];
812                                         if ( in_array(strtolower($attrname), $uris) )
813                                                 $thisval = wp_kses_bad_protocol($thisval, $allowed_protocols);
814
815                                         if(FALSE === array_key_exists($attrname, $attrarr)) {
816                                                 $attrarr[$attrname] = array ('name' => $attrname, 'value' => $thisval, 'whole' => "$attrname=\"$thisval\"", 'vless' => 'n');
817                                         }
818                                         # We add quotes to conform to W3C's HTML spec.
819                                         $working = 1;
820                                         $mode = 0;
821                                         $attr = preg_replace("%^[^\s\"']+(\s+|$)%", '', $attr);
822                                 }
823
824                                 break;
825                 } # switch
826
827                 if ($working == 0) # not well formed, remove and try again
828                 {
829                         $attr = wp_kses_html_error($attr);
830                         $mode = 0;
831                 }
832         } # while
833
834         if ($mode == 1 && FALSE === array_key_exists($attrname, $attrarr))
835                 # special case, for when the attribute list ends with a valueless
836                 # attribute like "selected"
837                 $attrarr[$attrname] = array ('name' => $attrname, 'value' => '', 'whole' => $attrname, 'vless' => 'y');
838
839         return $attrarr;
840 }
841
842 /**
843  * Performs different checks for attribute values.
844  *
845  * The currently implemented checks are "maxlen", "minlen", "maxval", "minval"
846  * and "valueless".
847  *
848  * @since 1.0.0
849  *
850  * @param string $value Attribute value
851  * @param string $vless Whether the value is valueless. Use 'y' or 'n'
852  * @param string $checkname What $checkvalue is checking for.
853  * @param mixed $checkvalue What constraint the value should pass
854  * @return bool Whether check passes
855  */
856 function wp_kses_check_attr_val($value, $vless, $checkname, $checkvalue) {
857         $ok = true;
858
859         switch (strtolower($checkname)) {
860                 case 'maxlen' :
861                         # The maxlen check makes sure that the attribute value has a length not
862                         # greater than the given value. This can be used to avoid Buffer Overflows
863                         # in WWW clients and various Internet servers.
864
865                         if (strlen($value) > $checkvalue)
866                                 $ok = false;
867                         break;
868
869                 case 'minlen' :
870                         # The minlen check makes sure that the attribute value has a length not
871                         # smaller than the given value.
872
873                         if (strlen($value) < $checkvalue)
874                                 $ok = false;
875                         break;
876
877                 case 'maxval' :
878                         # The maxval check does two things: it checks that the attribute value is
879                         # an integer from 0 and up, without an excessive amount of zeroes or
880                         # whitespace (to avoid Buffer Overflows). It also checks that the attribute
881                         # value is not greater than the given value.
882                         # This check can be used to avoid Denial of Service attacks.
883
884                         if (!preg_match('/^\s{0,6}[0-9]{1,6}\s{0,6}$/', $value))
885                                 $ok = false;
886                         if ($value > $checkvalue)
887                                 $ok = false;
888                         break;
889
890                 case 'minval' :
891                         # The minval check makes sure that the attribute value is a positive integer,
892                         # and that it is not smaller than the given value.
893
894                         if (!preg_match('/^\s{0,6}[0-9]{1,6}\s{0,6}$/', $value))
895                                 $ok = false;
896                         if ($value < $checkvalue)
897                                 $ok = false;
898                         break;
899
900                 case 'valueless' :
901                         # The valueless check makes sure if the attribute has a value
902                         # (like <a href="blah">) or not (<option selected>). If the given value
903                         # is a "y" or a "Y", the attribute must not have a value.
904                         # If the given value is an "n" or an "N", the attribute must have one.
905
906                         if (strtolower($checkvalue) != $vless)
907                                 $ok = false;
908                         break;
909         } # switch
910
911         return $ok;
912 }
913
914 /**
915  * Sanitize string from bad protocols.
916  *
917  * This function removes all non-allowed protocols from the beginning of
918  * $string. It ignores whitespace and the case of the letters, and it does
919  * understand HTML entities. It does its work in a while loop, so it won't be
920  * fooled by a string like "javascript:javascript:alert(57)".
921  *
922  * @since 1.0.0
923  *
924  * @param string $string Content to filter bad protocols from
925  * @param array $allowed_protocols Allowed protocols to keep
926  * @return string Filtered content
927  */
928 function wp_kses_bad_protocol($string, $allowed_protocols) {
929         $string = wp_kses_no_null($string);
930         $iterations = 0;
931
932         do {
933                 $original_string = $string;
934                 $string = wp_kses_bad_protocol_once($string, $allowed_protocols);
935         } while ( $original_string != $string && ++$iterations < 6 );
936
937         if ( $original_string != $string )
938                 return '';
939
940         return $string;
941 }
942
943 /**
944  * Removes any NULL characters in $string.
945  *
946  * @since 1.0.0
947  *
948  * @param string $string
949  * @return string
950  */
951 function wp_kses_no_null($string) {
952         $string = preg_replace('/\0+/', '', $string);
953         $string = preg_replace('/(\\\\0)+/', '', $string);
954
955         return $string;
956 }
957
958 /**
959  * Strips slashes from in front of quotes.
960  *
961  * This function changes the character sequence \" to just ". It leaves all
962  * other slashes alone. It's really weird, but the quoting from
963  * preg_replace(//e) seems to require this.
964  *
965  * @since 1.0.0
966  *
967  * @param string $string String to strip slashes
968  * @return string Fixed string with quoted slashes
969  */
970 function wp_kses_stripslashes($string) {
971         return preg_replace('%\\\\"%', '"', $string);
972 }
973
974 /**
975  * Goes through an array and changes the keys to all lower case.
976  *
977  * @since 1.0.0
978  *
979  * @param array $inarray Unfiltered array
980  * @return array Fixed array with all lowercase keys
981  */
982 function wp_kses_array_lc($inarray) {
983         $outarray = array ();
984
985         foreach ( (array) $inarray as $inkey => $inval) {
986                 $outkey = strtolower($inkey);
987                 $outarray[$outkey] = array ();
988
989                 foreach ( (array) $inval as $inkey2 => $inval2) {
990                         $outkey2 = strtolower($inkey2);
991                         $outarray[$outkey][$outkey2] = $inval2;
992                 } # foreach $inval
993         } # foreach $inarray
994
995         return $outarray;
996 }
997
998 /**
999  * Removes the HTML JavaScript entities found in early versions of Netscape 4.
1000  *
1001  * @since 1.0.0
1002  *
1003  * @param string $string
1004  * @return string
1005  */
1006 function wp_kses_js_entities($string) {
1007         return preg_replace('%&\s*\{[^}]*(\}\s*;?|$)%', '', $string);
1008 }
1009
1010 /**
1011  * Handles parsing errors in wp_kses_hair().
1012  *
1013  * The general plan is to remove everything to and including some whitespace,
1014  * but it deals with quotes and apostrophes as well.
1015  *
1016  * @since 1.0.0
1017  *
1018  * @param string $string
1019  * @return string
1020  */
1021 function wp_kses_html_error($string) {
1022         return preg_replace('/^("[^"]*("|$)|\'[^\']*(\'|$)|\S)*\s*/', '', $string);
1023 }
1024
1025 /**
1026  * Sanitizes content from bad protocols and other characters.
1027  *
1028  * This function searches for URL protocols at the beginning of $string, while
1029  * handling whitespace and HTML entities.
1030  *
1031  * @since 1.0.0
1032  *
1033  * @param string $string Content to check for bad protocols
1034  * @param string $allowed_protocols Allowed protocols
1035  * @return string Sanitized content
1036  */
1037 function wp_kses_bad_protocol_once($string, $allowed_protocols, $count = 1 ) {
1038         $string2 = preg_split( '/:|&#0*58;|&#x0*3a;/i', $string, 2 );
1039         if ( isset($string2[1]) && ! preg_match('%/\?%', $string2[0]) ) {
1040                 $string = trim( $string2[1] );
1041                 $protocol = wp_kses_bad_protocol_once2( $string2[0], $allowed_protocols );
1042                 if ( 'feed:' == $protocol ) {
1043                         if ( $count > 2 )
1044                                 return '';
1045                         $string = wp_kses_bad_protocol_once( $string, $allowed_protocols, ++$count );
1046                         if ( empty( $string ) )
1047                                 return $string;
1048                 }
1049                 $string = $protocol . $string;
1050         }
1051
1052         return $string;
1053 }
1054
1055 /**
1056  * Callback for wp_kses_bad_protocol_once() regular expression.
1057  *
1058  * This function processes URL protocols, checks to see if they're in the
1059  * whitelist or not, and returns different data depending on the answer.
1060  *
1061  * @access private
1062  * @since 1.0.0
1063  *
1064  * @param string $string URI scheme to check against the whitelist
1065  * @param string $allowed_protocols Allowed protocols
1066  * @return string Sanitized content
1067  */
1068 function wp_kses_bad_protocol_once2( $string, $allowed_protocols ) {
1069         $string2 = wp_kses_decode_entities($string);
1070         $string2 = preg_replace('/\s/', '', $string2);
1071         $string2 = wp_kses_no_null($string2);
1072         $string2 = strtolower($string2);
1073
1074         $allowed = false;
1075         foreach ( (array) $allowed_protocols as $one_protocol )
1076                 if ( strtolower($one_protocol) == $string2 ) {
1077                         $allowed = true;
1078                         break;
1079                 }
1080
1081         if ($allowed)
1082                 return "$string2:";
1083         else
1084                 return '';
1085 }
1086
1087 /**
1088  * Converts and fixes HTML entities.
1089  *
1090  * This function normalizes HTML entities. It will convert "AT&T" to the correct
1091  * "AT&amp;T", "&#00058;" to "&#58;", "&#XYZZY;" to "&amp;#XYZZY;" and so on.
1092  *
1093  * @since 1.0.0
1094  *
1095  * @param string $string Content to normalize entities
1096  * @return string Content with normalized entities
1097  */
1098 function wp_kses_normalize_entities($string) {
1099         # Disarm all entities by converting & to &amp;
1100
1101         $string = str_replace('&', '&amp;', $string);
1102
1103         # Change back the allowed entities in our entity whitelist
1104
1105         $string = preg_replace_callback('/&amp;([A-Za-z]{2,8});/', 'wp_kses_named_entities', $string);
1106         $string = preg_replace_callback('/&amp;#(0*[0-9]{1,7});/', 'wp_kses_normalize_entities2', $string);
1107         $string = preg_replace_callback('/&amp;#[Xx](0*[0-9A-Fa-f]{1,6});/', 'wp_kses_normalize_entities3', $string);
1108
1109         return $string;
1110 }
1111
1112 /**
1113  * Callback for wp_kses_normalize_entities() regular expression.
1114  *
1115  * This function only accepts valid named entity references, which are finite,
1116  * case-sensitive, and highly scrutinized by HTML and XML validators.
1117  *
1118  * @since 3.0.0
1119  *
1120  * @param array $matches preg_replace_callback() matches array
1121  * @return string Correctly encoded entity
1122  */
1123 function wp_kses_named_entities($matches) {
1124         global $allowedentitynames;
1125
1126         if ( empty($matches[1]) )
1127                 return '';
1128
1129         $i = $matches[1];
1130         return ( ( ! in_array($i, $allowedentitynames) ) ? "&amp;$i;" : "&$i;" );
1131 }
1132
1133 /**
1134  * Callback for wp_kses_normalize_entities() regular expression.
1135  *
1136  * This function helps wp_kses_normalize_entities() to only accept 16-bit values
1137  * and nothing more for &#number; entities.
1138  *
1139  * @access private
1140  * @since 1.0.0
1141  *
1142  * @param array $matches preg_replace_callback() matches array
1143  * @return string Correctly encoded entity
1144  */
1145 function wp_kses_normalize_entities2($matches) {
1146         if ( empty($matches[1]) )
1147                 return '';
1148
1149         $i = $matches[1];
1150         if (valid_unicode($i)) {
1151                 $i = str_pad(ltrim($i,'0'), 3, '0', STR_PAD_LEFT);
1152                 $i = "&#$i;";
1153         } else {
1154                 $i = "&amp;#$i;";
1155         }
1156
1157         return $i;
1158 }
1159
1160 /**
1161  * Callback for wp_kses_normalize_entities() for regular expression.
1162  *
1163  * This function helps wp_kses_normalize_entities() to only accept valid Unicode
1164  * numeric entities in hex form.
1165  *
1166  * @access private
1167  *
1168  * @param array $matches preg_replace_callback() matches array
1169  * @return string Correctly encoded entity
1170  */
1171 function wp_kses_normalize_entities3($matches) {
1172         if ( empty($matches[1]) )
1173                 return '';
1174
1175         $hexchars = $matches[1];
1176         return ( ( ! valid_unicode(hexdec($hexchars)) ) ? "&amp;#x$hexchars;" : '&#x'.ltrim($hexchars,'0').';' );
1177 }
1178
1179 /**
1180  * Helper function to determine if a Unicode value is valid.
1181  *
1182  * @param int $i Unicode value
1183  * @return bool True if the value was a valid Unicode number
1184  */
1185 function valid_unicode($i) {
1186         return ( $i == 0x9 || $i == 0xa || $i == 0xd ||
1187                         ($i >= 0x20 && $i <= 0xd7ff) ||
1188                         ($i >= 0xe000 && $i <= 0xfffd) ||
1189                         ($i >= 0x10000 && $i <= 0x10ffff) );
1190 }
1191
1192 /**
1193  * Convert all entities to their character counterparts.
1194  *
1195  * This function decodes numeric HTML entities (&#65; and &#x41;). It doesn't do
1196  * anything with other entities like &auml;, but we don't need them in the URL
1197  * protocol whitelisting system anyway.
1198  *
1199  * @since 1.0.0
1200  *
1201  * @param string $string Content to change entities
1202  * @return string Content after decoded entities
1203  */
1204 function wp_kses_decode_entities($string) {
1205         $string = preg_replace_callback('/&#([0-9]+);/', '_wp_kses_decode_entities_chr', $string);
1206         $string = preg_replace_callback('/&#[Xx]([0-9A-Fa-f]+);/', '_wp_kses_decode_entities_chr_hexdec', $string);
1207
1208         return $string;
1209 }
1210
1211 /**
1212  * Regex callback for wp_kses_decode_entities()
1213  *
1214  * @param array $match preg match
1215  * @return string
1216  */
1217 function _wp_kses_decode_entities_chr( $match ) {
1218         return chr( $match[1] );
1219 }
1220
1221 /**
1222  * Regex callback for wp_kses_decode_entities()
1223  *
1224  * @param array $match preg match
1225  * @return string
1226  */
1227 function _wp_kses_decode_entities_chr_hexdec( $match ) {
1228         return chr( hexdec( $match[1] ) );
1229 }
1230
1231 /**
1232  * Sanitize content with allowed HTML Kses rules.
1233  *
1234  * @since 1.0.0
1235  * @uses $allowedtags
1236  *
1237  * @param string $data Content to filter, expected to be escaped with slashes
1238  * @return string Filtered content
1239  */
1240 function wp_filter_kses($data) {
1241         global $allowedtags;
1242         return addslashes( wp_kses(stripslashes( $data ), $allowedtags) );
1243 }
1244
1245 /**
1246  * Sanitize content with allowed HTML Kses rules.
1247  *
1248  * @since 2.9.0
1249  * @uses $allowedtags
1250  *
1251  * @param string $data Content to filter, expected to not be escaped
1252  * @return string Filtered content
1253  */
1254 function wp_kses_data($data) {
1255         global $allowedtags;
1256         return wp_kses( $data , $allowedtags );
1257 }
1258
1259 /**
1260  * Sanitize content for allowed HTML tags for post content.
1261  *
1262  * Post content refers to the page contents of the 'post' type and not $_POST
1263  * data from forms.
1264  *
1265  * @since 2.0.0
1266  * @uses $allowedposttags
1267  *
1268  * @param string $data Post content to filter, expected to be escaped with slashes
1269  * @return string Filtered post content with allowed HTML tags and attributes intact.
1270  */
1271 function wp_filter_post_kses($data) {
1272         global $allowedposttags;
1273         return addslashes ( wp_kses(stripslashes( $data ), $allowedposttags) );
1274 }
1275
1276 /**
1277  * Sanitize content for allowed HTML tags for post content.
1278  *
1279  * Post content refers to the page contents of the 'post' type and not $_POST
1280  * data from forms.
1281  *
1282  * @since 2.9.0
1283  * @uses $allowedposttags
1284  *
1285  * @param string $data Post content to filter
1286  * @return string Filtered post content with allowed HTML tags and attributes intact.
1287  */
1288 function wp_kses_post($data) {
1289         global $allowedposttags;
1290         return wp_kses( $data , $allowedposttags );
1291 }
1292
1293 /**
1294  * Strips all of the HTML in the content.
1295  *
1296  * @since 2.1.0
1297  *
1298  * @param string $data Content to strip all HTML from
1299  * @return string Filtered content without any HTML
1300  */
1301 function wp_filter_nohtml_kses($data) {
1302         return addslashes ( wp_kses(stripslashes( $data ), array()) );
1303 }
1304
1305 /**
1306  * Adds all Kses input form content filters.
1307  *
1308  * All hooks have default priority. The wp_filter_kses() function is added to
1309  * the 'pre_comment_content' and 'title_save_pre' hooks.
1310  *
1311  * The wp_filter_post_kses() function is added to the 'content_save_pre',
1312  * 'excerpt_save_pre', and 'content_filtered_save_pre' hooks.
1313  *
1314  * @since 2.0.0
1315  * @uses add_filter() See description for what functions are added to what hooks.
1316  */
1317 function kses_init_filters() {
1318         // Normal filtering.
1319         add_filter('pre_comment_content', 'wp_filter_kses');
1320         add_filter('title_save_pre', 'wp_filter_kses');
1321
1322         // Post filtering
1323         add_filter('content_save_pre', 'wp_filter_post_kses');
1324         add_filter('excerpt_save_pre', 'wp_filter_post_kses');
1325         add_filter('content_filtered_save_pre', 'wp_filter_post_kses');
1326 }
1327
1328 /**
1329  * Removes all Kses input form content filters.
1330  *
1331  * A quick procedural method to removing all of the filters that kses uses for
1332  * content in WordPress Loop.
1333  *
1334  * Does not remove the kses_init() function from 'init' hook (priority is
1335  * default). Also does not remove kses_init() function from 'set_current_user'
1336  * hook (priority is also default).
1337  *
1338  * @since 2.0.6
1339  */
1340 function kses_remove_filters() {
1341         // Normal filtering.
1342         remove_filter('pre_comment_content', 'wp_filter_kses');
1343         remove_filter('title_save_pre', 'wp_filter_kses');
1344
1345         // Post filtering
1346         remove_filter('content_save_pre', 'wp_filter_post_kses');
1347         remove_filter('excerpt_save_pre', 'wp_filter_post_kses');
1348         remove_filter('content_filtered_save_pre', 'wp_filter_post_kses');
1349 }
1350
1351 /**
1352  * Sets up most of the Kses filters for input form content.
1353  *
1354  * If you remove the kses_init() function from 'init' hook and
1355  * 'set_current_user' (priority is default), then none of the Kses filter hooks
1356  * will be added.
1357  *
1358  * First removes all of the Kses filters in case the current user does not need
1359  * to have Kses filter the content. If the user does not have unfiltered_html
1360  * capability, then Kses filters are added.
1361  *
1362  * @uses kses_remove_filters() Removes the Kses filters
1363  * @uses kses_init_filters() Adds the Kses filters back if the user
1364  *              does not have unfiltered HTML capability.
1365  * @since 2.0.0
1366  */
1367 function kses_init() {
1368         kses_remove_filters();
1369
1370         if (current_user_can('unfiltered_html') == false)
1371                 kses_init_filters();
1372 }
1373
1374 add_action('init', 'kses_init');
1375 add_action('set_current_user', 'kses_init');
1376
1377 /**
1378  * Inline CSS filter
1379  *
1380  * @since 2.8.1
1381  */
1382 function safecss_filter_attr( $css, $deprecated = '' ) {
1383         if ( !empty( $deprecated ) )
1384                 _deprecated_argument( __FUNCTION__, '2.8.1' ); // Never implemented
1385
1386         $css = wp_kses_no_null($css);
1387         $css = str_replace(array("\n","\r","\t"), '', $css);
1388
1389         if ( preg_match( '%[\\(&=}]|/\*%', $css ) ) // remove any inline css containing \ ( & } = or comments
1390                 return '';
1391
1392         $css_array = explode( ';', trim( $css ) );
1393         $allowed_attr = apply_filters( 'safe_style_css', array( 'text-align', 'margin', 'color', 'float',
1394         'border', 'background', 'background-color', 'border-bottom', 'border-bottom-color',
1395         'border-bottom-style', 'border-bottom-width', 'border-collapse', 'border-color', 'border-left',
1396         'border-left-color', 'border-left-style', 'border-left-width', 'border-right', 'border-right-color',
1397         'border-right-style', 'border-right-width', 'border-spacing', 'border-style', 'border-top',
1398         'border-top-color', 'border-top-style', 'border-top-width', 'border-width', 'caption-side',
1399         'clear', 'cursor', 'direction', 'font', 'font-family', 'font-size', 'font-style',
1400         'font-variant', 'font-weight', 'height', 'letter-spacing', 'line-height', 'margin-bottom',
1401         'margin-left', 'margin-right', 'margin-top', 'overflow', 'padding', 'padding-bottom',
1402         'padding-left', 'padding-right', 'padding-top', 'text-decoration', 'text-indent', 'vertical-align',
1403         'width' ) );
1404
1405         if ( empty($allowed_attr) )
1406                 return $css;
1407
1408         $css = '';
1409         foreach ( $css_array as $css_item ) {
1410                 if ( $css_item == '' )
1411                         continue;
1412                 $css_item = trim( $css_item );
1413                 $found = false;
1414                 if ( strpos( $css_item, ':' ) === false ) {
1415                         $found = true;
1416                 } else {
1417                         $parts = split( ':', $css_item );
1418                         if ( in_array( trim( $parts[0] ), $allowed_attr ) )
1419                                 $found = true;
1420                 }
1421                 if ( $found ) {
1422                         if( $css != '' )
1423                                 $css .= ';';
1424                         $css .= $css_item;
1425                 }
1426         }
1427
1428         return $css;
1429 }