Skip to content
Snippets Groups Projects
Commit 0a01cd8c authored by Giovannoni Laurent's avatar Giovannoni Laurent
Browse files

evo:

parent 9a799d30
No related branches found
No related tags found
No related merge requests found
......@@ -42,6 +42,10 @@ function ajaxDB(
$(document).ready( function() {
$.getJSON('ajax.php?script='+ajaxUrl, ajaxParameters, function(data){
if (data.status == 1) {
if (data.text == 'redirect') {
goTo('index.php?step=docservers');
return;
}
retour_ok.html(data.text);
retour_ko.html('');
slide(divRetour);
......
This diff is collapsed.
......@@ -74,7 +74,7 @@ if ($_REQUEST['action'] == 'testConnect') {
}
$return['status'] = 1;
$return['text'] = '';
$return['text'] = 'redirect';
$jsonReturn = json_encode($return);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment