Changeset 32080
- Timestamp:
- 04/08/2015 05:26:05 PM (9 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/js/updates.js
r32067 r32080 482 482 $.support.postMessage = !! window.postMessage; 483 483 484 if ( $.support.postMessage === false || target === null || window.location.search.indexOf( 'parent=update-core' ) === -1 )484 if ( $.support.postMessage === false || target === null || window.location.search.indexOf( 'parent=update-core' ) !== -1 ) 485 485 return; 486 486 -
trunk/src/wp-admin/update-core.php
r32067 r32080 265 265 } 266 266 267 $details_url = self_admin_url('plugin-install.php?tab=plugin-information&p lugin=' . $plugin_data->update->slug . '§ion=changelog&TB_iframe=true&width=640&height=662&parent=update-core');267 $details_url = self_admin_url('plugin-install.php?tab=plugin-information&parent=update-core&plugin=' . $plugin_data->update->slug . '§ion=changelog&TB_iframe=true&width=640&height=662'); 268 268 $details_text = sprintf(__('View version %1$s details'), $plugin_data->update->new_version); 269 269 $details = sprintf('<a href="%1$s" class="thickbox" title="%2$s">%3$s</a>.', esc_url($details_url), esc_attr($plugin_data->Name), $details_text);
Note: See TracChangeset
for help on using the changeset viewer.