Changeset 48097 for trunk/src/wp-admin/includes/update.php
- Timestamp:
- 06/19/2020 10:15:36 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/update.php
r47857 r48097 945 945 * @since 5.5.0 946 946 * 947 * @param string $type 947 * @param string $type The type of update being checked: 'theme' or 'plugin'. 948 948 * @return bool True if auto-updates are enabled for `$type`, false otherwise. 949 949 */ … … 952 952 case 'plugin': 953 953 /** 954 * Filters whether plugins manualauto-update is enabled.954 * Filters whether plugins auto-update is enabled. 955 955 * 956 956 * @since 5.5.0 … … 961 961 case 'theme': 962 962 /** 963 * Filters whether plugins manualauto-update is enabled.963 * Filters whether themes auto-update is enabled. 964 964 * 965 965 * @since 5.5.0 966 966 * 967 * @param bool True if themes auto-update is enabled, false otherwise.967 * @param bool $enabled True if themes auto-update is enabled, false otherwise. 968 968 */ 969 969 return apply_filters( 'themes_auto_update_enabled', true ); … … 974 974 975 975 /** 976 * Determines the appropriate update message to be displayed.976 * Determines the appropriate auto-update message to be displayed. 977 977 * 978 978 * @since 5.5.0
Note: See TracChangeset
for help on using the changeset viewer.