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
PHP warning: Undefined array key "fetchit_called"
error shown in logs every time page with Fetchit is loaded.
to fix it in 'file core/components/fetchit/src/FetchIt.php' add 'isset()' on 81 line
if (!$_SESSION['fetchit_called']) {
to
if (!isset($_SESSION['fetchit_called'])) {
The text was updated successfully, but these errors were encountered:
#8
Sorry, something went wrong.
GulomovCreative
No branches or pull requests
PHP warning: Undefined array key "fetchit_called"
error shown in logs every time page with Fetchit is loaded.
to fix it in 'file core/components/fetchit/src/FetchIt.php' add 'isset()' on 81 line
if (!$_SESSION['fetchit_called']) {
to
if (!isset($_SESSION['fetchit_called'])) {
The text was updated successfully, but these errors were encountered: