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
Repro steps:
The problem is in lines such as this:
SportsPress/includes/admin/class-sp-admin-taxonomies.php
Line 111 in e477522
$latitude
$longitude
$address
I believe order of operations should be inverted. First assign a default value to the variables and then override with the last venue if possible.
I haven't checked if the same issue appears somewhere else, but probably.
Cheers
The text was updated successfully, but these errors were encountered:
Fix undefined variable errors when no venues added
404f9aa
#462
Hi there @Pupix ,
It should be fixed with the following commit: 404f9aa
Thanks, Savvas
Sorry, something went wrong.
No branches or pull requests
Repro steps:
The problem is in lines such as this:
SportsPress/includes/admin/class-sp-admin-taxonomies.php
Line 111 in e477522
where if there are no venues, the used variables (
$latitude
,$longitude
,$address
) never get assigned.I believe order of operations should be inverted. First assign a default value to the variables and then override with the last venue if possible.
I haven't checked if the same issue appears somewhere else, but probably.
Cheers
The text was updated successfully, but these errors were encountered: