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
As soon as WPML is installed and activated, the following error occurs.
PHP Fatal error: Uncaught Error: Cannot use object of type Closure as array in /wp-content/plugins/debugpress/core/track/Tracker.php:694
The following bugfix would provide a remedy:
if ( !is_array($call['args']) || !is_array($call['args'][0]) ) { continue; }
This must be inserted above (Tracker.php line 694)
if ( isset( $call['args'][0][0] ) && $call['args'][0][0] instanceof Tracker )
Maybe it would be possible to integrate this bugfix in the next update.
The text was updated successfully, but these errors were encountered:
Thanks for reporting and providing the fix. This will be added to the next minor update soon.
Sorry, something went wrong.
Thanks
dev4press
No branches or pull requests
As soon as WPML is installed and activated, the following error occurs.
PHP Fatal error: Uncaught Error: Cannot use object of type Closure as array in /wp-content/plugins/debugpress/core/track/Tracker.php:694
The following bugfix would provide a remedy:
This must be inserted above (Tracker.php line 694)
if ( isset( $call['args'][0][0] ) && $call['args'][0][0] instanceof Tracker )
Maybe it would be possible to integrate this bugfix in the next update.
The text was updated successfully, but these errors were encountered: