From: Florian Forster Date: Tue, 12 Sep 2006 22:01:13 +0000 (+0200) Subject: licom.cgi: Remove debugging output and fix markup of HTTP and mailto: hrefs. X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=b8262a4b72971550f7b0e02acd0d17c15bf3937d;p=licom.git licom.cgi: Remove debugging output and fix markup of HTTP and mailto: hrefs. --- diff --git a/licom.cgi b/licom.cgi index d00ab66..2a6f9ea 100755 --- a/licom.cgi +++ b/licom.cgi @@ -737,14 +737,6 @@ sub action_update my $old_cn = $person->name (); - print < - \$lastname = $lastname
- \$firstname = $firstname
- \$old_cn = $old_cn -
-HTML - $person->lastname ($lastname) if ($lastname and $lastname ne $person->lastname ()); $person->firstname ($firstname) if ($firstname and $firstname ne $person->firstname ()); @@ -759,8 +751,6 @@ HTML # ->del_members automatically deleted the # group, if no more members exist. So this # order is important. - print "
\$cn = " . encode_entities ($cn) . "; " - . "\$old_cn = " . encode_entities ($old_cn) . ";
\n"; $_->add_members ($cn); $_->del_members ($old_cn); } @@ -1150,7 +1140,7 @@ function updateTextbox (name) if (arrTb[i].value != objStr) { arrTb[i].value = objStr; - arrTb[i].focus (); + /* arrTb[i].focus (); */ } } @@ -1302,6 +1292,7 @@ sub markup_field if ($value =~ m#^([a-z]+)://(.+)$#) { $value_uri = $1 . '://' . uri_escape_utf8 ($2); + $value_uri =~ s#%2f#/#gi; } else { @@ -1311,6 +1302,7 @@ sub markup_field } elsif ($field eq 'mail') { + $value_uri =~ s/%40/@/g; return (qq($value_html)); } return ($value_html);