We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We have trouble with the plugin on moodle 3.11.9 (2021051709) with the version of local_pages being 2021110400
We got the problem when we upgraded the php version to php 8.0. Now were not able to edit or add a page (see the image below for debug info)
The text was updated successfully, but these errors were encountered:
Try editing local/pages/forms/edit.php changing line 237 from:
local/pages/forms/edit.php
$records = json_decode($this->_pagedata);
to:
$records = empty($this->_pagedata) ? array() : json_decode($this->_pagedata);
Sorry, something went wrong.
I see PR #42 also includes a fix for this.
No branches or pull requests
We have trouble with the plugin on moodle 3.11.9 (2021051709) with the version of local_pages being 2021110400
We got the problem when we upgraded the php version to php 8.0. Now were not able to edit or add a page (see the image below for debug info)
The text was updated successfully, but these errors were encountered: