From 28cd07d1a75c4e9dcaecac49efee0091f2fc62fa Mon Sep 17 00:00:00 2001 From: A. Täffner <darkalex@firesplash.de> Date: Thu, 07 Apr 2016 05:30:49 -0400 Subject: [PATCH] Implemented a checkbox "enable DNSSEC" in DNS-Wizard. This Checkbox can be enabled or disabled by template. --- interface/web/mail/list/mail_mailinglist.list.php | 59 +++++++++++++++++++++++++++++++---------------------------- 1 files changed, 31 insertions(+), 28 deletions(-) diff --git a/interface/web/mail/list/mail_mailinglist.list.php b/interface/web/mail/list/mail_mailinglist.list.php index 4070b22..b72a9ec 100644 --- a/interface/web/mail/list/mail_mailinglist.list.php +++ b/interface/web/mail/list/mail_mailinglist.list.php @@ -13,55 +13,58 @@ // Name of the list -$liste["name"] = "mail_mailinglist"; +$liste["name"] = "mail_mailinglist"; // Database table -$liste["table"] = "mail_mailinglist"; +$liste["table"] = "mail_mailinglist"; // Index index field of the database table -$liste["table_idx"] = "mailinglist_id"; +$liste["table_idx"] = "mailinglist_id"; // Search Field Prefix -$liste["search_prefix"] = "search_"; +$liste["search_prefix"] = "search_"; // Records per page -$liste["records_per_page"] = 15; +$liste["records_per_page"] = "15"; // Script File of the list -$liste["file"] = "mail_mailinglist_list.php"; +$liste["file"] = "mail_mailinglist_list.php"; // Script file of the edit form -$liste["edit_file"] = "mail_mailinglist_edit.php"; +$liste["edit_file"] = "mail_mailinglist_edit.php"; // Script File of the delete script -$liste["delete_file"] = "mail_mailinglist_del.php"; +$liste["delete_file"] = "mail_mailinglist_del.php"; // Paging Template -$liste["paging_tpl"] = "templates/paging.tpl.htm"; +$liste["paging_tpl"] = "templates/paging.tpl.htm"; // Enable auth -$liste["auth"] = "yes"; +$liste["auth"] = "yes"; /***************************************************** * Suchfelder *****************************************************/ -$liste["item"][] = array( 'field' => "listname", - 'datatype' => "VARCHAR", - 'formtype' => "TEXT", - 'op' => "like", - 'prefix' => "%", - 'suffix' => "%", - 'width' => "", - 'value' => ""); - -$liste["item"][] = array( 'field' => "domain", - 'datatype' => "VARCHAR", - 'formtype' => "TEXT", - 'op' => "like", - 'prefix' => "%", - 'suffix' => "%", - 'width' => "", - 'value' => ""); +$liste["item"][] = array( 'field' => "listname", + 'datatype' => "VARCHAR", + 'formtype' => "TEXT", + 'op' => "like", + 'prefix' => "%", + 'suffix' => "%", + 'width' => "", + 'value' => ""); -?> \ No newline at end of file +$liste["item"][] = array( 'field' => "domain", + 'datatype' => "VARCHAR", + 'filters' => array( 0 => array( 'event' => 'SHOW', + 'type' => 'IDNTOUTF8') + ), + 'formtype' => "TEXT", + 'op' => "like", + 'prefix' => "%", + 'suffix' => "%", + 'width' => "", + 'value' => ""); + +?> -- Gitblit v1.9.1