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
on export
The text was updated successfully, but these errors were encountered:
Same thing here.
Sorry, something went wrong.
On wp2grav.php, line 67, this:
wp2grav.php
require_once(ABSPATH . 'wp-admin/includes/screen.php');
should be:
require_once(ABSPATH . '/wp-admin/includes/class-wp-screen.php');
I don't know exactly when, but it looks like WordPress changed at some version..
thanks for finding this, please make a PR with the code changes.
for compatibility I would do something like
if (file_exists(ABSPATH . '/wp-admin/includes/class-wp-screen.php')) { require_once(ABSPATH . '/wp-admin/includes/class-wp-screen.php'); } else { require_once(ABSPATH . 'wp-admin/includes/screen.php'); }
No branches or pull requests
on export
The text was updated successfully, but these errors were encountered: