AliasdomainHandler.php, PFAHandler.php:

- move empty storemore() function from AliasdomainHandler to PFAHandler



git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@1309 a1433add-5e2c-0410-b055-b7f2511e0802
pull/2/head
Christian Boltz 13 years ago
parent 0c42306267
commit b8812686aa

@ -100,13 +100,6 @@ class AliasdomainHandler extends PFAHandler {
return true; # alias_domain is enum, so we don't need to check its syntax etc.
}
/**
* called by $this->store() after storing $this->values in the database
* can be used to update additional tables, call scripts etc.
*/
protected function storemore() {
return true; # do nothing, successfully ;-)
}
/**
* @return true on success false on failure

@ -189,6 +189,13 @@ class PFAHandler {
return $result;
}
/**
* called by $this->store() after storing $this->values in the database
* can be used to update additional tables, call scripts etc.
*/
protected function storemore() {
return true; # do nothing, successfully ;-)
}
/**

Loading…
Cancel
Save