Make WordPress Core

Changeset 24729


Ignore:
Timestamp:
07/18/2013 02:01:58 PM (11 years ago)
Author:
markjaquith
Message:

Revisions: use escaped templating for some of the tags.

Fixes #24775.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/revision.php

    r24671 r24729  
    134134    <div class="revisions-tooltip-content">
    135135    <# if ( 'undefined' !== typeof data && 'undefined' !== typeof data.author ) { #>
    136             {{{ data.author.avatar }}} {{{ data.author.name }}},
    137             {{{ data.timeAgo }}}
    138             ({{{ data.dateShort }}})
     136            {{{ data.author.avatar }}} {{ data.author.name }},
     137            {{ data.timeAgo }}
     138            ({{ data.dateShort }})
    139139    <# } #>
    140140    </div>
     
    163163                <strong><?php _ex( 'From:', 'Followed by post revision info' ); ?></strong>
    164164                <# if ( 'undefined' !== typeof data.from ) { #>
    165                     {{{ data.from.attributes.author.avatar }}} {{{ data.from.attributes.author.name }}},
    166                     {{{ data.from.attributes.timeAgo }}}
    167                     ({{{ data.from.attributes.dateShort }}})
     165                    {{{ data.from.attributes.author.avatar }}} {{ data.from.attributes.author.name }},
     166                    {{ data.from.attributes.timeAgo }}
     167                    ({{ data.from.attributes.dateShort }})
    168168                <# } #>
    169169            </div>
     
    175175                <strong><?php _ex( 'To:', 'Followed by post revision info' ); ?></strong>
    176176                <# if ( 'undefined' !== typeof data.to ) { #>
    177                     {{{ data.to.attributes.author.avatar }}} {{{ data.to.attributes.author.name }}},
    178                     {{{ data.to.attributes.timeAgo }}}
    179                     ({{{ data.to.attributes.dateShort }}})
     177                    {{{ data.to.attributes.author.avatar }}} {{ data.to.attributes.author.name }},
     178                    {{ data.to.attributes.timeAgo }}
     179                    ({{ data.to.attributes.dateShort }})
    180180                <# } #>
    181181            </div>
     
    190190    <div class="diff">
    191191    <# _.each( data.fields, function( field ) { #>
    192         <h3>{{{ field.name }}}</h3>
     192        <h3>{{ field.name }}</h3>
    193193        {{{ field.diff }}}
    194194    <# }); #>
Note: See TracChangeset for help on using the changeset viewer.