Update Server.php

Small typo
pull/4427/head
Steve Clement 2019-04-05 18:14:56 +09:00 committed by GitHub
parent 3778c4686b
commit 3dbb9c0a5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -4649,7 +4649,7 @@ class Server extends AppModel
$output = implode("\n", $output);
$res = array('status' => ($return_code==0 ? true : false), 'output' => $output);
} else {
$res = array('status' => false, 'output' => _('Invalid submodule.'));
$res = array('status' => false, 'output' => __('Invalid submodule.'));
}
return $res;
}