diff options
author | Josh Angell <josh@supercooldesign.co.uk> | 2012-02-22 09:17:12 +0000 |
---|---|---|
committer | Josh Angell <josh@supercooldesign.co.uk> | 2012-02-22 09:17:12 +0000 |
commit | 36d74e41fb2045af5c929869843540424b58ec2c (patch) | |
tree | 47f9dc20002a0c57186f9da93115dc9f4cdfaa2f | |
parent | 8764fd6ccd1dccc9681fe998bf51b6e8142f0143 (diff) |
Caught a html entity
Signed-off-by: Josh Angell <josh@supercooldesign.co.uk>
-rw-r--r-- | templates/web/default/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/web/default/index.html b/templates/web/default/index.html index 06f3ef771..0a0ee7170 100644 --- a/templates/web/default/index.html +++ b/templates/web/default/index.html @@ -63,7 +63,7 @@ <p id="front_photos"> [% FOREACH p IN recent_photos %] <a href="/report/[% p.id %]"><img border="0" height="100" - src="/photo?tn=1;id=[% p.id %]" alt="[% p.title | html %]" title="[% p.title | html %]"></a> + src="/photo?tn=1&id=[% p.id %]" alt="[% p.title | html %]" title="[% p.title | html %]"></a> [% END %] </p> [% END %] |