﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc
7420,"There should be a ""Go back"" link after a plugin is automatically upgraded",tabreziqbal,,"When a plugin is automatically upgraded from Wordpress admin page(""update.php?action=upgrade-plugin""), the result page shows the summary of the plugin upgradation process after which the user needs to either use the back button of the browser or click the ""Plugins"" link at the top-right corner. It would be nice to have a ""Go back to plugins page"" or some such link on the ""Upgrade Plugin"" page itself.

wp-admin/update.php:
{{{
 else {
		//Result is the new plugin file relative to WP_PLUGIN_DIR
		show_message( __('Plugin upgraded successfully') );	
		if( $result && $was_activated ){
			show_message(__('Attempting reactivation of the plugin'));
			echo '<iframe style=""border:0"" width=""100%"" height=""170px"" src=""' . 
                        wp_nonce_url('update.php?action=activate-plugin&plugin=' . 
                        $result, 'activate-plugin_' . $result) .'""></iframe>';
		}
		'''//ADD A LINK TO PLUGIN ADMIN PAGE HERE???'''
	}
	echo '</div>';

}}}
",enhancement,closed,low,,Administration,2.6,trivial,worksforme,has-patch tested 2nd-opinion,
