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

Fix obtaining source for widgets #1212

Merged
merged 1 commit into from
Jun 14, 2018
Merged

Fix obtaining source for widgets #1212

merged 1 commit into from
Jun 14, 2018

Conversation

westonruter
Copy link
Member

I noticed when testing validation errors raised by the Jetpack Google Translate widget that it was erroneously reporting core and wp-includesas the source, along with a superfluous reflection property:

    {
        "reflection": {
            "name": "display_callback",
            "class": "WP_Widget"
        },
        "type": "core",
        "name": "wp-includes",
        "function": "Jetpack_Google_Translate_Widget::display_callback",
        "widget_id": "google_translate_widget-2",
        "handle": "google-translate"
    }

After this change, the source appears properly as:

    {
        "type": "plugin",
        "name": "jetpack",
        "function": "Jetpack_Google_Translate_Widget::display_callback",
        "widget_id": "google_translate_widget-2",
        "handle": "google-translate"
    }

@westonruter westonruter added this to the v1.0 milestone Jun 14, 2018
Copy link
Member

@amedina amedina left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM.

@westonruter westonruter merged commit 014e0a0 into develop Jun 14, 2018
@westonruter westonruter deleted the fix/widget-source branch July 5, 2018 15:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants