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

[3.3 BC] Extensions break on missing load(). #6420

Closed
bobdenotter opened this issue Feb 25, 2017 · 3 comments
Closed

[3.3 BC] Extensions break on missing load(). #6420

bobdenotter opened this issue Feb 25, 2017 · 3 comments
Assignees
Labels
blocking release bug A bug that has been verified

Comments

@bobdenotter
Copy link
Member

After updating from 3.2.7 to 3.3 beta, my Gridview extension broke with this exception:

screen shot 2017-02-25 at 17 24 44

Can easily be "fixed" by adding this to the class that implements FieldInterface:

    public function load()
    {
        return;
    }

However, this is a BC break, that should be fixed. :-)

@bobdenotter
Copy link
Member Author

Same for missing persist(), by the way.

screen shot 2017-03-04 at 13 31 38

@bobdenotter
Copy link
Member Author

@rossriley In the case of persist, adding a public function persist() { } also makes the error go away, but it also means that the data input doesn't actually get saved in the DB. :-)

@GwendolenLynch
Copy link
Contributor

Fixed in #6458

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
blocking release bug A bug that has been verified
Projects
None yet
Development

No branches or pull requests

4 participants