From 5fcaec01d8d2b22eb6ebc8f320b8dd45db0d409a Mon Sep 17 00:00:00 2001 From: pedro_morgan <pedro_morgan@ispconfig3> Date: Fri, 17 Aug 2007 20:32:39 -0400 Subject: [PATCH] Double quotes --- interface/web/dns/lib/module.conf.php | 52 ++++++++++++++++++++++++++-------------------------- 1 files changed, 26 insertions(+), 26 deletions(-) diff --git a/interface/web/dns/lib/module.conf.php b/interface/web/dns/lib/module.conf.php index ea7d08d..41e6d05 100644 --- a/interface/web/dns/lib/module.conf.php +++ b/interface/web/dns/lib/module.conf.php @@ -1,27 +1,27 @@ -<?php -$module = array ( - 'name' => 'dns', - 'title' => 'DNS', - 'template' => 'module.tpl.htm', - 'navframe_page' => '', - 'startpage' => 'dns/soa_list.php', - 'tab_width' => '', - 'nav' => - array ( - 0 => - array ( - 'title' => 'Zones', - 'open' => 1, - 'items' => - array ( - 0 => - array ( - 'title' => 'SOA', - 'target' => 'content', - 'link' => 'dns/soa_list.php', - ), - ), - ), - ), -) +<?php + +$module["name"] = "dns"; +$module["title"] = "DNS"; +$module["template"] = "module.tpl.htm"; +$module["startpage"] = "dns/dns_soa_list.php"; +$module["tab_width"] = ''; + +/* + Email accounts menu +*/ + + +$items[] = array( 'title' => "Zones", + 'target' => 'content', + 'link' => 'dns/dns_soa_list.php'); +/* +$items[] = array( 'title' => "A-Records", + 'target' => 'content', + 'link' => 'dns/dns_a_list.php'); +*/ + + +$module["nav"][] = array( 'title' => 'DNS', + 'open' => 1, + 'items' => $items); ?> \ No newline at end of file -- Gitblit v1.9.1