Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a second argument to the_title filter to prevent fatal error #3899

Merged
merged 2 commits into from Dec 12, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion includes/admin/shortcodes/abstract-shortcode-generator.php
Expand Up @@ -298,7 +298,8 @@ protected function generate_post( $field ) {
foreach ( $posts as $post ) {
$options[ absint( $post->ID ) ] = empty( $post->post_title )
? sprintf( __( 'Untitled (#%s)', 'give' ), $post->ID )
: apply_filters( 'the_title', $post->post_title );
/** This filter is documented in wp-includes/post-template.php */
: apply_filters( 'the_title', $post->post_title, $post->ID );
}

$field['type'] = 'listbox';
Expand Down