my $old_cn = $person->name ();
- print <<HTML;
-<div><code>
- \$lastname = $lastname<br />
- \$firstname = $firstname<br />
- \$old_cn = $old_cn
-</code></div>
-HTML
-
$person->lastname ($lastname) if ($lastname and $lastname ne $person->lastname ());
$person->firstname ($firstname) if ($firstname and $firstname ne $person->firstname ());
# ->del_members automatically deleted the
# group, if no more members exist. So this
# order is important.
- print "<div><code>\$cn = " . encode_entities ($cn) . "; "
- . "\$old_cn = " . encode_entities ($old_cn) . ";</code></div>\n";
$_->add_members ($cn);
$_->del_members ($old_cn);
}
if (arrTb[i].value != objStr)
{
arrTb[i].value = objStr;
- arrTb[i].focus ();
+ /* arrTb[i].focus (); */
}
}
if ($value =~ m#^([a-z]+)://(.+)$#)
{
$value_uri = $1 . '://' . uri_escape_utf8 ($2);
+ $value_uri =~ s#%2f#/#gi;
}
else
{
}
elsif ($field eq 'mail')
{
+ $value_uri =~ s/%40/@/g;
return (qq(<a href="mailto:$value_uri" class="mail">$value_html</a>));
}
return ($value_html);