Compare commits
No commits in common. "develop" and "lam_7_3_RC1" have entirely different histories.
develop
...
lam_7_3_RC
|
@ -1166,35 +1166,6 @@
|
||||||
</mediaobject>
|
</mediaobject>
|
||||||
</screenshot>
|
</screenshot>
|
||||||
|
|
||||||
<para>Identification method, used LDAP attributes:</para>
|
|
||||||
|
|
||||||
<itemizedlist>
|
|
||||||
<listitem>
|
|
||||||
<para>Email: mail</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>Employee number: employeeNumber</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>Self service login attribute: same as configured on first tab
|
|
||||||
of self service profile</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>User name: uid</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>User name and email address: uid and mail</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>User name or email address: uid and mail</para>
|
|
||||||
</listitem>
|
|
||||||
</itemizedlist>
|
|
||||||
|
|
||||||
<para>You can now configure the minimum answer length for password reset
|
<para>You can now configure the minimum answer length for password reset
|
||||||
answers. This is checked when you allow you users to specify their
|
answers. This is checked when you allow you users to specify their
|
||||||
answers via the self service. Additionally, you can specify the text of
|
answers via the self service. Additionally, you can specify the text of
|
||||||
|
@ -1224,8 +1195,9 @@
|
||||||
The mail can include the new password by using the special wildcard
|
The mail can include the new password by using the special wildcard
|
||||||
"@@newPassword@@". Additionally, you may want to insert other wildcards
|
"@@newPassword@@". Additionally, you may want to insert other wildcards
|
||||||
that are replaced by the corresponding LDAP attributes. E.g. "@@uid@@"
|
that are replaced by the corresponding LDAP attributes. E.g. "@@uid@@"
|
||||||
will be replaced by the user name. See <link
|
will be replaced by the user name.
|
||||||
linkend="mailSetup">here</link> for setting up your SMTP server.</para>
|
See <link linkend="mailSetup">here</link> for setting up your SMTP
|
||||||
|
server.</para>
|
||||||
|
|
||||||
<literallayout> </literallayout>
|
<literallayout> </literallayout>
|
||||||
|
|
||||||
|
|
|
@ -1069,7 +1069,6 @@ class accountContainer {
|
||||||
$suffixSelect->setHasDescriptiveElements(true);
|
$suffixSelect->setHasDescriptiveElements(true);
|
||||||
$suffixSelect->setRightToLeftTextDirection(true);
|
$suffixSelect->setRightToLeftTextDirection(true);
|
||||||
$suffixSelect->setShortLabel();
|
$suffixSelect->setShortLabel();
|
||||||
$suffixSelect->setSortElements(false);
|
|
||||||
$titleBarSuffixRdn->add($suffixSelect, 12, 12, 7);
|
$titleBarSuffixRdn->add($suffixSelect, 12, 12, 7);
|
||||||
// RDN selection
|
// RDN selection
|
||||||
$rdnlist = getRDNAttributes($this->type->getId());
|
$rdnlist = getRDNAttributes($this->type->getId());
|
||||||
|
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
|
@ -210,8 +210,8 @@ class QueryRender extends PageRender {
|
||||||
echo '<br/>';
|
echo '<br/>';
|
||||||
echo '<br/>';
|
echo '<br/>';
|
||||||
|
|
||||||
$format = get_request('format','REQUEST',false,$_SESSION[APPCONFIG]->getValue('search','display'));
|
switch(get_request('format','REQUEST',false,$_SESSION[APPCONFIG]->getValue('search','display'))) {
|
||||||
if ($format === 'list') {
|
case 'list':
|
||||||
foreach ($results as $dndetails) {
|
foreach ($results as $dndetails) {
|
||||||
$dndetails = array_change_key_case($dndetails);
|
$dndetails = array_change_key_case($dndetails);
|
||||||
|
|
||||||
|
@ -263,13 +263,16 @@ class QueryRender extends PageRender {
|
||||||
echo '</table>';
|
echo '</table>';
|
||||||
echo '<br/>';
|
echo '<br/>';
|
||||||
}
|
}
|
||||||
}
|
|
||||||
else {
|
break;
|
||||||
|
|
||||||
# Display the results.
|
# Display the results.
|
||||||
|
case 'table':
|
||||||
if (! $results) {
|
if (! $results) {
|
||||||
echo _('Search returned no results');
|
echo _('Search returned no results');
|
||||||
|
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
else {
|
|
||||||
|
|
||||||
printf('<form action="cmd.php" method="post" id="massform_%s">',$counter);
|
printf('<form action="cmd.php" method="post" id="massform_%s">',$counter);
|
||||||
echo '<div>';
|
echo '<div>';
|
||||||
|
@ -367,7 +370,11 @@ class QueryRender extends PageRender {
|
||||||
echo '</table>';
|
echo '</table>';
|
||||||
echo '</form>';
|
echo '</form>';
|
||||||
echo "\n\n";
|
echo "\n\n";
|
||||||
}
|
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
printf('Have ID [%s], run this query for page [%s]',$this->template_id,$this->page);
|
||||||
}
|
}
|
||||||
|
|
||||||
echo '</td></tr>';
|
echo '</td></tr>';
|
||||||
|
|
Loading…
Reference in New Issue