summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/system_usermanager_settings.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/usr/local/www/system_usermanager_settings.php')
-rw-r--r--src/usr/local/www/system_usermanager_settings.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/usr/local/www/system_usermanager_settings.php b/src/usr/local/www/system_usermanager_settings.php
index c8228f5..7ccc2d5 100644
--- a/src/usr/local/www/system_usermanager_settings.php
+++ b/src/usr/local/www/system_usermanager_settings.php
@@ -41,22 +41,22 @@ if ($_REQUEST['ajax']) {
}
if (!$authcfg) {
- printf(gettext("%sError: Could not find settings for %s%s"), '<span class="text-danger">', htmlspecialchars($authserver), "</span>");
+ printf(gettext('%1$sError: Could not find settings for %2$s%3$s'), '<span class="text-danger">', htmlspecialchars($authserver), "</span>");
exit;
} else {
print("<pre>");
print('<table class="table table-hover table-striped table-condensed">');
- print("<tr><td>" . sprintf(gettext("Attempting connection to %s%s%s"), "<td><center>", htmlspecialchars($auth_server), "</center></td>"));
+ print("<tr><td>" . sprintf(gettext('Attempting connection to %1$s%2$s%3$s'), "<td><center>", htmlspecialchars($auth_server), "</center></td>"));
if (ldap_test_connection($authcfg)) {
print("<td><span class=\"text-center text-success\">" . gettext("OK") . "</span></td></tr>");
- print("<tr><td>" . sprintf(gettext("Attempting bind to %s%s%s"), "<td><center>", htmlspecialchars($auth_server), "</center></td>"));
+ print("<tr><td>" . sprintf(gettext('Attempting bind to %1$s%2$s%3$s'), "<td><center>", htmlspecialchars($auth_server), "</center></td>"));
if (ldap_test_bind($authcfg)) {
print('<td><span class="text-center text-success">' . gettext("OK") . "</span></td></tr>");
- print("<tr><td>" . sprintf(gettext("Attempting to fetch Organizational Units from %s%s%s"), "<td><center>", htmlspecialchars($auth_server), "</center></td>"));
+ print("<tr><td>" . sprintf(gettext('Attempting to fetch Organizational Units from %1$s%2$s%3$s'), "<td><center>", htmlspecialchars($auth_server), "</center></td>"));
$ous = ldap_get_user_ous(true, $authcfg);
if (count($ous)>1) {
OpenPOWER on IntegriCloud