configure phpmyadmin config.inc for auto login

This commit is contained in:
Usman Nasir
2020-08-10 11:41:28 +05:00
parent aeaa8c6fc1
commit 8af8b6115d

View File

@@ -591,7 +591,7 @@ app.controller('phpMyAdmin', function ($scope, $http, $window) {
function ListInitialDatas(response) { function ListInitialDatas(response) {
$scope.cyberPanelLoading = true; $scope.cyberPanelLoading = true;
if (response.data.status === 1) { if (response.data.status === 1) {
var rUrl = '/phpmyadmin/signin.php?username=' + response.data.username + '&token=' + response.data.token; var rUrl = '/phpmyadmin/phpmyadminsignin.php?username=' + response.data.username + '&token=' + response.data.token;
$window.location.href = rUrl; $window.location.href = rUrl;
} }
else {} else {}