Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Shortcodes/FileLink.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class FileLink extends DataObject
*
* @config
* @var bool
* @deprecated 2.4.0 Will be removed without equivalent functionality to replace it
* @deprecated 2.4.0 Will be removed without equivalent functionality to replace it in a future major release
*/
private static $hide_in_campaigns = true;
}
2 changes: 1 addition & 1 deletion src/Shortcodes/ImageShortcodeProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ public static function handle_shortcode($args, $content, $parser, $shortcode, $e
*/
public static function createImageTag(array $attributes) : string
{
Deprecation::notice('2.3.0', 'Will be removed without equivalent functionality to replace it.');
Deprecation::notice('2.3.0', 'Will be removed without equivalent functionality to replace it in a future major release.');
$preparedAttributes = '';
foreach ($attributes as $attributeKey => $attributeValue) {
if (strlen($attributeValue ?? '') > 0 || $attributeKey === 'alt') {
Expand Down