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
Fixed by adding ee_version check to construct
//normal if (defined('APP_VER')) { $this->ee_version = APP_VER; } //install wizard else if (isset(ee()->version)) { $this->ee_version = ee()->version; }
And in manage_notifications function
//set_variable depracated in 2.6.0 if (version_compare($this->ee_version, '2.6.0', '>=')) { $this->EE->view->cp_page_title = 'Manage Notifications'; } else { $this->EE->cp->set_variable('cp_page_title', 'Manage Notifications'); }
The text was updated successfully, but these errors were encountered:
Thanks! Could you do a pull request so I can get your code directly?
Sorry, something went wrong.
No branches or pull requests
Fixed by adding ee_version check to construct
And in manage_notifications function
The text was updated successfully, but these errors were encountered: