1
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2025-12-03 23:11:12 +03:00

fix bug where user entered vacation details were not being returned when you go to set yourself away again

git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@607 a1433add-5e2c-0410-b055-b7f2511e0802
This commit is contained in:
David Goodwin
2009-03-30 12:46:35 +00:00
parent adcc105163
commit e068b7812a

View File

@@ -49,7 +49,8 @@ if ($_SERVER['REQUEST_METHOD'] == "GET")
$tSubject = '';
$tBody = '';
if($vh->get_details()) {
$details = $vh->get_details();
if($details != false) {
$tSubject = $details['subject'];
$tBody = $details['body'];
}