Making WordPress.org


Ignore:
Timestamp:
04/12/2023 05:24:19 AM (2 years ago)
Author:
dd32
Message:

Plugin Directory: Store required plugins as an array, and an additional flag for when dependencies are not met by published WordPress.org-hosted plugins.

See #6921, [12532].

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/shortcodes/class-upload-handler.php

    r12532 r12533  
    378378                    'header_textdomain'        => $this->plugin['TextDomain'],
    379379                    'header_description'       => $this->plugin['Description'],
    380                     'requires_plugins'         => $this->plugin['RequiresPlugins'],
     380                    'requires_plugins'         => array_map( 'trim', explode( ',', $this->plugin['RequiresPlugins'] ) ),
    381381                    'assets_screenshots'       => array(),
    382382                    'assets_icons'             => array(),
Note: See TracChangeset for help on using the changeset viewer.