diff options
author | matthew <matthew> | 2009-04-16 13:51:24 +0000 |
---|---|---|
committer | matthew <matthew> | 2009-04-16 13:51:24 +0000 |
commit | 38f37a3d9dab22df8f29363aefe4f83cdee27dda (patch) | |
tree | 9890997faad5b218d2a97a59f933a08e1b307199 | |
parent | 2c3092e761d3c95f21322810605bc60b89df8378 (diff) |
A few more.
-rw-r--r-- | perllib/Page.pm | 4 | ||||
-rw-r--r-- | perllib/Problems.pm | 4 | ||||
-rwxr-xr-x | web/index.cgi | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/perllib/Page.pm b/perllib/Page.pm index 09effb1c2..1ce00d1f2 100644 --- a/perllib/Page.pm +++ b/perllib/Page.pm @@ -6,7 +6,7 @@ # Copyright (c) 2006 UK Citizens Online Democracy. All rights reserved. # Email: matthew@mysociety.org; WWW: http://www.mysociety.org/ # -# $Id: Page.pm,v 1.141 2009-04-16 13:41:48 matthew Exp $ +# $Id: Page.pm,v 1.142 2009-04-16 13:51:30 matthew Exp $ # package Page; @@ -221,7 +221,7 @@ piwik_url = pkBaseURL + "piwik.php"; piwik_log(piwik_action_name, piwik_idsite, piwik_url); //--> </script> -<noscript><img src="http://piwik.mysociety.org/piwik.php?i=1" style="border:0" alt=""></noscript> +<noscript><img width=1 height=1 src="http://piwik.mysociety.org/piwik.php?i=1" style="border:0" alt=""></noscript> <!-- /Piwik --> EOF } diff --git a/perllib/Problems.pm b/perllib/Problems.pm index 9ae877742..ed599c6d4 100644 --- a/perllib/Problems.pm +++ b/perllib/Problems.pm @@ -6,7 +6,7 @@ # Copyright (c) 2008 UK Citizens Online Democracy. All rights reserved. # Email: matthew@mysociety.org; WWW: http://www.mysociety.org/ # -# $Id: Problems.pm,v 1.12 2009-04-16 13:41:48 matthew Exp $ +# $Id: Problems.pm,v 1.13 2009-04-16 13:51:30 matthew Exp $ # package Problems; @@ -106,7 +106,7 @@ sub recent_photos { foreach (@$probs) { my $title = ent($_->{title}); $out .= '<a href="/report/' . $_->{id} . - '"><img border="0" src="/photo?tn=1;id=' . $_->{id} . + '"><img border="0" height="100" src="/photo?tn=1;id=' . $_->{id} . '" alt="' . $title . '" title="' . $title . '"></a>'; } return $out; diff --git a/web/index.cgi b/web/index.cgi index dd4c09c3b..90b2117af 100755 --- a/web/index.cgi +++ b/web/index.cgi @@ -6,7 +6,7 @@ # Copyright (c) 2006 UK Citizens Online Democracy. All rights reserved. # Email: matthew@mysociety.org. WWW: http://www.mysociety.org # -# $Id: index.cgi,v 1.251 2009-04-15 10:25:44 matthew Exp $ +# $Id: index.cgi,v 1.252 2009-04-16 13:51:24 matthew Exp $ use strict; use Standard; @@ -110,7 +110,7 @@ sub front_page { if ($q->{site} eq 'fixmystreet') { $out .= <<EOF <p align="center" style="margin-bottom:0"> -<img alt="$new" src="/i/new.png" border="0"> +<img width="23" height="12" alt="$new" src="/i/new.png" border="0"> <a href="$url">$getiphone</a> </p> EOF |