diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-05-28 19:08:59 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-05-28 19:08:59 +0000 |
commit | 8fc13829491c4a3ec3d8e174fd96687e111da251 (patch) | |
tree | 3dea5a90fe1344a3b75105bf1ef2e2b6cd6b08b2 /IkiWiki | |
parent | 330bbd03df8f41cf6e8036dbfc764dabddcd6715 (diff) | |
download | ikiwiki-8fc13829491c4a3ec3d8e174fd96687e111da251.tar ikiwiki-8fc13829491c4a3ec3d8e174fd96687e111da251.tar.gz |
didn't mean to make this change (yet)
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Plugin/meta.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/meta.pm b/IkiWiki/Plugin/meta.pm index d04bc1d51..18e28a196 100644 --- a/IkiWiki/Plugin/meta.pm +++ b/IkiWiki/Plugin/meta.pm @@ -65,7 +65,7 @@ sub preprocess (@) { #{{{ } } elsif ($key eq 'title') { - $title{$page}=$value; + $title{$page}=encode_entities($value); } elsif ($key eq 'permalink') { $permalink{$page}=$value; |