xmlrpc.php:

- setAway(): remove superfluous $reply_type
  (https://sourceforge.net/p/postfixadmin/patches/113/)


git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@1603 a1433add-5e2c-0410-b055-b7f2511e0802
pull/2/head
Christian Boltz 11 years ago
parent cf8ccc167f
commit 635eed201f

@ -135,9 +135,9 @@ class VacationProxy {
* @param string $activeUntil
* @return boolean true on success.
*/
public function setAway($subject, $body, $reply_type = 'One Reply', $interval_time = 0, $activeFrom = '2000-01-01', $activeUntil = '2099-12-31') {
public function setAway($subject, $body, $interval_time = 0, $activeFrom = '2000-01-01', $activeUntil = '2099-12-31') {
$vh = new VacationHandler($_SESSION['sessid']['username']);
return $vh->set_away($subject, $body, $reply_type, $interval_time, $activeFrom, $activeUntil);
return $vh->set_away($subject, $body, '', $interval_time, $activeFrom, $activeUntil);
}

Loading…
Cancel
Save