Changeset 12500
- Timestamp:
- 12/23/2009 09:15:13 AM (16 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 3 edited
-
wp-admin/revision.php (modified) (1 diff)
-
wp-includes/js/wp-list-revisions.dev.js (added)
-
wp-includes/js/wp-list-revisions.js (added)
-
wp-includes/post-template.php (modified) (3 diffs)
-
wp-includes/script-loader.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/revision.php
r11380 r12500 9 9 /** WordPress Administration Bootstrap */ 10 10 require_once('admin.php'); 11 12 wp_enqueue_script('list-revisions'); 11 13 12 14 wp_reset_vars(array('revision', 'left', 'right', 'diff', 'action')); -
trunk/wp-includes/post-template.php
r12327 r12500 1300 1300 1301 1301 $rows .= "<tr$class>\n"; 1302 $rows .= "\t<th style='white-space: nowrap' scope='row'><input type='radio' name='left' value='$revision->ID'$left_checked /><input type='radio' name='right' value='$revision->ID'$right_checked /></th>\n"; 1302 $rows .= "\t<th style='white-space: nowrap' scope='row'><input type='radio' name='left' value='$revision->ID'$left_checked />\n"; 1303 $rows .= "\t<th style='white-space: nowrap' scope='row'><input type='radio' name='right' value='$revision->ID'$right_checked /></th>\n"; 1303 1304 $rows .= "\t<td>$date</td>\n"; 1304 1305 $rows .= "\t<td>$name</td>\n"; … … 1324 1325 <br class="clear" /> 1325 1326 1326 <table class="widefat post-revisions" cellspacing="0"> 1327 <table class="widefat post-revisions" cellspacing="0" id="post-revisions"> 1328 <col /> 1327 1329 <col /> 1328 1330 <col style="width: 33%" /> … … 1331 1333 <thead> 1332 1334 <tr> 1333 <th scope="col"></th> 1335 <th scope="col"><?php _e( 'Old' ); ?></th> 1336 <th scope="col"><?php _e( 'New' ); ?></th> 1334 1337 <th scope="col"><?php _e( 'Date Created' ); ?></th> 1335 1338 <th scope="col"><?php _e( 'Author' ); ?></th> -
trunk/wp-includes/script-loader.php
r12496 r12500 374 374 $scripts->add_data( 'hoverIntent', 'group', 1 ); 375 375 376 $scripts->add( 'list-revisions', "/wp-includes/js/wp-list-revisions$suffix.js", null, '20091223' ); 377 376 378 $scripts->add( 'media', "/wp-admin/js/media$suffix.js", array( 'jquery-ui-draggable' ), '20090415' ); 377 379 $scripts->add_data( 'media', 'group', 1 );
Note: See TracChangeset
for help on using the changeset viewer.