We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02718a3 commit c76a83aCopy full SHA for c76a83a
src/Handler.pm
@@ -145,9 +145,11 @@ sub uninstall
145
$dbh->quote_identifier( $::imscpConfig{'DATABASE_NAME'} . '_pma' )
146
));
147
148
- if ( defined( my $controlUser = @{ $dbh->selectcol_arrayref(
149
- "SELECT `value` FROM `config` WHERE `name` = 'PMA_CONTROL_USER'" ) }
150
- ) ) {
+ my ( $controlUser ) = @{ $dbh->selectcol_arrayref(
+ "SELECT `value` FROM `config` WHERE `name` = 'PMA_CONTROL_USER'"
+ ) };
151
+
152
+ if ( defined $controlUser ) {
153
$controlUser = decryptRijndaelCBC(
154
$::imscpDBKey, $::imscpDBiv, $controlUser
155
);
0 commit comments