Skip to content

Commit

Permalink
Fixed alttext problem
Browse files Browse the repository at this point in the history
  • Loading branch information
tvroom committed Jul 18, 2004
1 parent cbced53 commit 4ce8870
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions themes/slashcode/htdocs/users.pl
Original file line number Diff line number Diff line change
Expand Up @@ -1522,10 +1522,10 @@ sub tildeEd {

@$tid_order = sort { lc $topics->{$a} cmp lc $topics->{$b} } keys %$topics;

while (my($tid, $alttext) = each %$topics) {
while (my($tid, $textname) = each %$topics) {
$tidref->{$tid}{checked} = ($extid =~ /'\Q$tid\E'/) ?
' CHECKED' : '';
$tidref->{$tid}{alttext} = $alttext;
$tidref->{$tid}{textname} = $textname;
}

my $sections = $reader->getDescriptions('skins');
Expand Down

0 comments on commit 4ce8870

Please sign in to comment.