mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-20 08:31:26 +00:00
Merge branch 'seeddms-5.1.x' into seeddms-6.0.x
This commit is contained in:
commit
d73071b38e
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// Translators: Admin (2480), dgrutsch (22)
|
||||
// Translators: Admin (2481), dgrutsch (22)
|
||||
|
||||
$text = array(
|
||||
'2_factor_auth' => '2-Faktor Authentifizierung',
|
||||
|
@ -1121,7 +1121,7 @@ URL: [url]',
|
|||
'send_login_data_body' => 'Login-Daten
|
||||
|
||||
Login: [login]
|
||||
Name: [name]
|
||||
Name: [username]
|
||||
|
||||
[comment]',
|
||||
'send_login_data_subject' => '[sitename]: [login] - Ihre Login-Daten',
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// Translators: Admin (1607), dgrutsch (9), netixw (14)
|
||||
// Translators: Admin (1608), dgrutsch (9), netixw (14)
|
||||
|
||||
$text = array(
|
||||
'2_factor_auth' => '2-factor authentication',
|
||||
|
@ -1116,7 +1116,7 @@ URL: [url]',
|
|||
'send_login_data_body' => 'Login data
|
||||
|
||||
Login: [login]
|
||||
Name: [name]
|
||||
Name: [username]
|
||||
|
||||
[comment]',
|
||||
'send_login_data_subject' => '[sitename]: [login] - Your login data',
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// Translators: Admin (1062), jeromerobert (50), lonnnew (9), Oudiceval (275)
|
||||
// Translators: Admin (1063), jeromerobert (50), lonnnew (9), Oudiceval (275)
|
||||
|
||||
$text = array(
|
||||
'2_factor_auth' => 'Authentification forte',
|
||||
|
@ -1066,7 +1066,7 @@ URL: [url]',
|
|||
'send_login_data_body' => 'Informations de connexion
|
||||
|
||||
Identifiant : [login]
|
||||
Nom : [name]
|
||||
Nom : [username]
|
||||
|
||||
[comment]',
|
||||
'send_login_data_subject' => '[sitename] : [login] - Vos informations de connexion',
|
||||
|
|
|
@ -287,6 +287,11 @@ else if ($action == "sendlogindata" && $settings->_enableEmail) {
|
|||
$userid = $_POST["userid"];
|
||||
}
|
||||
|
||||
$comment = '';
|
||||
if (isset($_POST["comment"])) {
|
||||
$comment = $_POST["comment"];
|
||||
}
|
||||
|
||||
if (!isset($userid) || !is_numeric($userid) || intval($userid)<1) {
|
||||
UI::exitError(getMLText("admin_tools"),getMLText("invalid_user_id"));
|
||||
}
|
||||
|
|
|
@ -40,11 +40,6 @@ class SeedDMS_View_SendLoginData extends SeedDMS_Bootstrap_Style {
|
|||
$this->pageNavigation(getMLText("admin_tools"), "admin_tools");
|
||||
$this->contentHeading(getMLText("send_login_data"));
|
||||
|
||||
?>
|
||||
<div class="alert">
|
||||
<?php printMLText("confirm_transfer_objects", array ("username" => htmlspecialchars($newuser->getFullName())));?>
|
||||
</div>
|
||||
<?php
|
||||
$this->contentContainerStart();
|
||||
?>
|
||||
<form class="form-horizontal" action="../op/op.UsrMgr.php" name="form1" method="post">
|
||||
|
|
Loading…
Reference in New Issue
Block a user