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 fd4e68b commit aeeaab3Copy full SHA for aeeaab3
web/login/index.php
@@ -33,7 +33,9 @@
33
exec(VESTA_CMD ."v-check-user-password ".$v_user." ".$v_password." '".$_SERVER["REMOTE_ADDR"]."'", $output, $return_var);
34
if ( $return_var > 0 ) {
35
$ERROR = "<a class=\"error\">".__('Invalid username or password')."</a>";
36
+
37
// Set system language
38
+ unset($output);
39
exec (VESTA_CMD . "v-list-sys-config json", $output, $return_var);
40
$data = json_decode(implode('', $output), true);
41
if (!empty( $data['config']['LANGUAGE'])) {
0 commit comments