summaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/po.pm
diff options
context:
space:
mode:
Diffstat (limited to 'IkiWiki/Plugin/po.pm')
-rw-r--r--IkiWiki/Plugin/po.pm11
1 files changed, 1 insertions, 10 deletions
diff --git a/IkiWiki/Plugin/po.pm b/IkiWiki/Plugin/po.pm
index 01912f813..b51bc34f7 100644
--- a/IkiWiki/Plugin/po.pm
+++ b/IkiWiki/Plugin/po.pm
@@ -39,7 +39,7 @@ sub import {
hook(type => "rename", id => "po", call => \&renamepages, first => 1);
hook(type => "delete", id => "po", call => \&mydelete);
hook(type => "change", id => "po", call => \&change);
- # hook(type => "cansave", id => "po", call => \&cansave);
+ hook(type => "cansave", id => "po", call => \&cansave);
hook(type => "canremove", id => "po", call => \&canremove);
hook(type => "canrename", id => "po", call => \&canrename);
hook(type => "editcontent", id => "po", call => \&editcontent);
@@ -503,15 +503,6 @@ sub formbuilder (@) {
}
}
}
-
- # Prevent invalid PO content to be saved.
- # This cannot be done in the formbuilder_setup hook as the editpage plugin
- # unconditionally sets the editcontent field's validate code later.
- elsif ($form->field("do") eq "edit") {
- if (istranslation($form->field("page"))) {
- $form->field(name => "editcontent", validate => \&isvalidpo);
- }
- }
}
# ,----