Plugins: Use include_once for wp-admin/includes/plugin-install.php in WP_Plugin_Install_List_Table::prepare_items().

This brings consistency with the other instances where the file is included, and allows for reusing its functions in custom code.

Props engelen, desrosj.
Fixes #38874.

git-svn-id: https://develop.svn.wordpress.org/trunk@45751 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2019-08-05 11:06:27 +00:00
parent 3f2e265174
commit c68927e509

View File

@ -85,7 +85,7 @@ class WP_Plugin_Install_List_Table extends WP_List_Table {
* @global string $term * @global string $term
*/ */
public function prepare_items() { public function prepare_items() {
include( ABSPATH . 'wp-admin/includes/plugin-install.php' ); include_once( ABSPATH . 'wp-admin/includes/plugin-install.php' );
global $tabs, $tab, $paged, $type, $term; global $tabs, $tab, $paged, $type, $term;