po: back to the cansave hook, as the form validation is not sufficient
Form validation works, but after trying to save invalid PO content, the user is brought back to the page he/she was editing, without any single clue to explain why it was not saved. The dedicated cansave hook is thus necessary. Signed-off-by: intrigeri <intrigeri@boum.org>master
parent
7ef0c19cdf
commit
4ad871810d
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
# ,----
|
||||
|
|
Loading…
Reference in New Issue