Make WordPress Core


Ignore:
Timestamp:
10/21/2025 04:31:04 AM (3 months ago)
Author:
peterwilsoncc
Message:

Upgrade/Install: Revert relocation of Hello Dolly plugin.

Reverts Hello Dolly changes moving the plugin to a containing folder. Removes the upgrade_690() function in it's entirety as the upgrade routine is no longer required.

Fully reverted commits: [60666], [60670], [60716], [60725]; partially reverts [60721].

Porps johnbillion, whyisjake, SirLouen, mindctrl, afragen, jorbin, Otto42, swissspidy, welcher, davidbaumwald.
See #53323.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/plugin.php

    r60995 r61006  
    154154                }
    155155            }
     156        } elseif ( 'hello.php' === basename( $plugin_file ) ) {
     157            $textdomain = 'default';
    156158        }
    157159        if ( $textdomain ) {
     
    10061008
    10071009        $plugin_slug = dirname( $plugin_file );
     1010
     1011        if ( 'hello.php' === $plugin_file ) {
     1012            $plugin_slug = 'hello-dolly';
     1013        }
    10081014
    10091015        // Remove language files, silently.
Note: See TracChangeset for help on using the changeset viewer.