Skip Menu |

This queue is for tickets about the CGI-Kwiki CPAN distribution.

Report information
The Basics
Id: 2914
Status: new
Priority: 0/
Queue: CGI-Kwiki

People
Owner: Nobody in particular
Requestors:
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: (no value)
Fixed in: (no value)



Subject: kwiki_image needs alt="" text
here is display_vars modified sub display_vars { my ($self) = @_; my %vars; $vars{image_html} = '<h1><a href="' . $self->script . '?KwikiLogoImage">???</a></h1>'; if (defined $self->config->kwiki_image) { my $kwiki_image = $self->config->kwiki_image; my $title_prefix = $self->config->title_prefix || ""; $title_prefix =~ s{\"}{&quot;}g; $vars{image_html} = qq{<img src="$kwiki_image" border="0" alt="$title_prefix">}; } $vars{sister_html} = ''; return %vars; }