From 224ef1379dfb1c35ca45dcee50072406c76f714a Mon Sep 17 00:00:00 2001 From: osmiy Date: Wed, 6 Dec 2006 15:48:46 +0000 Subject: - added supporting of sqlite database for frontend (Eugene) git-svn-id: svn://svn.zabbix.com/trunk@3571 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- frontends/php/setup.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'frontends/php/setup.php') diff --git a/frontends/php/setup.php b/frontends/php/setup.php index 156845fa..e358d10e 100644 --- a/frontends/php/setup.php +++ b/frontends/php/setup.php @@ -42,6 +42,8 @@ "user"=> array(T_ZBX_STR, O_OPT, null, NOT_EMPTY, null), "password"=> array(T_ZBX_STR, O_OPT, null, null, null), + "message"=> array(T_ZBX_STR, O_OPT, NULL, NULL, NULL), + "nodename"=> array(T_ZBX_STR, O_OPT, null, NOT_EMPTY, null), "nodeid"=> array(T_ZBX_INT, O_OPT, null, BETWEEN(0,999), null), /* actions */ @@ -109,6 +111,8 @@ include_once "include/page_header.php"; + if(isset($_REQUEST['message'])) show_error_message($_REQUEST['message']); + insert_showhint_javascript(); echo BR; -- cgit