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
I found that the $enabledt variable is used within phpmyadmin class before it's declared.
$enabledt
phpmyadmin
See line 64 in manifests/init.pp, while $enabledt is not defined till line 73.
manifests/init.pp
I workarounded it just by moving the $state_select = $enabledt ?... code block before line 61.
$state_select = $enabledt ?...
The text was updated successfully, but these errors were encountered:
I think, this should be fixed now with the latest PR merge
Sorry, something went wrong.
No branches or pull requests
I found that the
$enabledt
variable is used withinphpmyadmin
class before it's declared.See line 64 in
manifests/init.pp
, while$enabledt
is not defined till line 73.I workarounded it just by moving the
$state_select = $enabledt ?...
code block before line 61.The text was updated successfully, but these errors were encountered: