0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-19 19:22:14 +02:00

s/store/save/g

This commit is contained in:
David Goodwin 2020-09-25 21:43:34 +01:00
parent 7107e17c4c
commit d7fa33a3ed
2 changed files with 2 additions and 2 deletions

View File

@ -157,7 +157,7 @@ if ($_SERVER['REQUEST_METHOD'] == "POST") {
$form_fields = $handler->getStruct(); # refresh $form_fields - set() might have changed something
if ($error != 1) {
if (!$handler->store()) {
if (!$handler->save()) {
$errormsg = $handler->errormsg;
} else {
flash_info($handler->infomsg);

View File

@ -47,7 +47,7 @@ if ($handler->init($id)) { # errors will be displayed as last step anyway, no ne
}
if ($handler->set(array('active' => $active))) {
$handler->store();
$handler->save();
}
}