Changeset 24729
- Timestamp:
- 07/18/2013 02:01:58 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/revision.php
r24671 r24729 134 134 <div class="revisions-tooltip-content"> 135 135 <# 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 }}) 139 139 <# } #> 140 140 </div> … … 163 163 <strong><?php _ex( 'From:', 'Followed by post revision info' ); ?></strong> 164 164 <# 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 }}) 168 168 <# } #> 169 169 </div> … … 175 175 <strong><?php _ex( 'To:', 'Followed by post revision info' ); ?></strong> 176 176 <# 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 }}) 180 180 <# } #> 181 181 </div> … … 190 190 <div class="diff"> 191 191 <# _.each( data.fields, function( field ) { #> 192 <h3>{{ { field.name }}}</h3>192 <h3>{{ field.name }}</h3> 193 193 {{{ field.diff }}} 194 194 <# }); #>
Note: See TracChangeset
for help on using the changeset viewer.