* Correct bug in encoding of %pagestate keys, fixes edittemplate.
parent
57a41b663d
commit
52d9f8e9f3
|
@ -962,7 +962,7 @@ sub saveindex () { #{{{
|
||||||
if (exists $pagestate{$page}) {
|
if (exists $pagestate{$page}) {
|
||||||
foreach my $id (@hookids) {
|
foreach my $id (@hookids) {
|
||||||
foreach my $key (keys %{$pagestate{$page}{$id}}) {
|
foreach my $key (keys %{$pagestate{$page}{$id}}) {
|
||||||
$line.=' '.$id.'_'.encode_entities($key)."=".encode_entities($pagestate{$page}{$id}{$key}, " \t\n");
|
$line.=' '.$id.'_'.encode_entities($key, " \t\n")."=".encode_entities($pagestate{$page}{$id}{$key}, " \t\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -44,6 +44,7 @@ ikiwiki (2.41) UNRELEASED; urgency=low
|
||||||
* htmltidy: Pass --markup yes, in case tidy's config file disabled it.
|
* htmltidy: Pass --markup yes, in case tidy's config file disabled it.
|
||||||
* external: Add getargv and setargv methods to allow access to ikiwiki's
|
* external: Add getargv and setargv methods to allow access to ikiwiki's
|
||||||
@ARGV.
|
@ARGV.
|
||||||
|
* Correct bug in encoding of %pagestate keys, fixes edittemplate.
|
||||||
|
|
||||||
-- martin f. krafft <madduck@debian.org> Sun, 02 Mar 2008 17:46:38 +0100
|
-- martin f. krafft <madduck@debian.org> Sun, 02 Mar 2008 17:46:38 +0100
|
||||||
|
|
||||||
|
|
|
@ -3,3 +3,5 @@ I tried to use [[the_edittemplate_plugin|plugins/edittemplate]] on <http://vcs-p
|
||||||
I hope I am not doing something wrong...
|
I hope I am not doing something wrong...
|
||||||
|
|
||||||
--[[madduck]]
|
--[[madduck]]
|
||||||
|
|
||||||
|
> [[fixed|done]] --[[Joey]]
|
||||||
|
|
Loading…
Reference in New Issue