Changes from trunk/wp-admin/includes/plugin-install.php at r11541 to branches/2.8/wp-admin/includes/plugin-install.php at r11586
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.8/wp-admin/includes/plugin-install.php
r11541 r11586 47 47 $res = new WP_Error('plugins_api_failed', __('An unknown error occurred'), $request['body']); 48 48 } 49 } elseif ( !is_wp_error($res) ) { 50 $res->external = true; 49 51 } 50 52 … … 442 444 $type = 'install'; 443 445 //Check to see if this plugin is known to be installed, and has an update awaiting it. 444 $update_plugins = get_ option('update_plugins');446 $update_plugins = get_transient('update_plugins'); 445 447 if ( is_object( $update_plugins ) ) { 446 448 foreach ( (array)$update_plugins->response as $file => $plugin ) { … … 463 465 } else { 464 466 //If the above update check failed, Then that probably means that the update checker has out-of-date information, force a refresh 465 delete_ option('update_plugins');467 delete_transient('update_plugins'); 466 468 $update_file = $api->slug . '/' . $key; //This code branch only deals with a plugin which is in a folder the same name as its slug, Doesnt support plugins which have 'non-standard' names 467 469 $type = 'update_available'; … … 510 512 <?php endif; if ( ! empty($api->downloaded) ) : ?> 511 513 <li><strong><?php _e('Downloaded:') ?></strong> <?php printf(_n('%s time', '%s times', $api->downloaded), number_format_i18n($api->downloaded)) ?></li> 512 <?php endif; if ( ! empty($api->slug) ) : ?>514 <?php endif; if ( ! empty($api->slug) && empty($api->external) ) : ?> 513 515 <li><a target="_blank" href="http://wordpress.org/extend/plugins/<?php echo $api->slug ?>/"><?php _e('WordPress.org Plugin Page »') ?></a></li> 514 516 <?php endif; if ( ! empty($api->homepage) ) : ?> … … 516 518 <?php endif; ?> 517 519 </ul> 520 <?php if ( ! empty($api->rating) ) : ?> 518 521 <h2><?php _e('Average Rating') ?></h2> 519 522 <div class="star-holder" title="<?php printf(_n('(based on %s rating)', '(based on %s ratings)', $api->num_ratings), number_format_i18n($api->num_ratings)); ?>"> … … 526 529 </div> 527 530 <small><?php printf(_n('(based on %s rating)', '(based on %s ratings)', $api->num_ratings), number_format_i18n($api->num_ratings)); ?></small> 531 <?php endif; ?> 528 532 </div> 529 533 <div id="section-holder" class="wrap">
Note: See TracChangeset
for help on using the changeset viewer.