From b947f120b4967814a50e2dc4e5320395a9130a5e Mon Sep 17 00:00:00 2001 From: David Goodwin Date: Sun, 23 Sep 2007 13:57:10 +0000 Subject: [PATCH] functions.inc.php: typo fix git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@77 a1433add-5e2c-0410-b055-b7f2511e0802 --- functions.inc.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/functions.inc.php b/functions.inc.php index c551af0c..ede63a17 100644 --- a/functions.inc.php +++ b/functions.inc.php @@ -1263,7 +1263,7 @@ function db_connect () * @return String or int as appropriate. */ function db_get_boolean($bool) { - if(!is_boolean($bool)) { + if(!is_bool($bool)) { die("Invalid usage of 'db_get_boolean($bool)'"); } @@ -1783,4 +1783,5 @@ $table_domain_admins = table_by_key ('domain_admins'); $table_log = table_by_key ('log'); $table_mailbox = table_by_key ('mailbox'); $table_vacation = table_by_key ('vacation'); +$table_vacation_notification = table_by_key('vacation_notification'); /* vim: set expandtab softtabstop=3 tabstop=3 shiftwidth=3: */