diff options
author | Daniel Friesel <derf@finalrewind.org> | 2011-10-29 21:23:47 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2011-10-29 21:23:47 +0200 |
commit | a60a34fc9ae410560b22728b8d5470b678cea635 (patch) | |
tree | 97b2aadfdc29ee20b402c2669ebcd1db12ef004e /cgi | |
parent | f79c9a794e9e96fb426011b983ab1a23060e554d (diff) |
cgi: Fix image link
Diffstat (limited to 'cgi')
-rw-r--r-- | cgi/index.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cgi/index.pl b/cgi/index.pl index 346c3e6..153869f 100644 --- a/cgi/index.pl +++ b/cgi/index.pl @@ -199,7 +199,7 @@ __DATA__ <body> % if ($city and $stop) { -<img src="../../<%= $city %>/<%= $stop %>.png?<%= $params %>" alt="" +<img src="../<%= $city %>/<%= $stop %>.png?<%= $params %>" alt="" id="display" height="<%= $height * 4 %>" width="<%= $width * 4 %>"/> % } % else { |