From d9bcf68e395d6156645a7974b1a992aa6e6c00aa Mon Sep 17 00:00:00 2001 From: Marius Cramer <m.cramer@pixcept.de> Date: Mon, 14 Oct 2013 08:57:25 -0400 Subject: [PATCH] Added missing empty directories from svn import --- interface/web/mail/list/mail_blacklist.list.php | 24 +++++++++++++----------- 1 files changed, 13 insertions(+), 11 deletions(-) diff --git a/interface/web/mail/list/mail_blacklist.list.php b/interface/web/mail/list/mail_blacklist.list.php index 12308e5..fd3ab4f 100644 --- a/interface/web/mail/list/mail_blacklist.list.php +++ b/interface/web/mail/list/mail_blacklist.list.php @@ -16,16 +16,16 @@ $liste["name"] = "mail_blacklist"; // Database table -$liste["table"] = "mail_blacklist"; +$liste["table"] = "mail_access"; // Index index field of the database table -$liste["table_idx"] = "blacklist_id"; +$liste["table_idx"] = "access_id"; // Search Field Prefix $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_blacklist_list.php"; @@ -54,7 +54,8 @@ 'prefix' => "", 'suffix' => "", 'width' => "", - 'value' => array('1' => "Yes",'0' => "No")); + 'value' => array('y' => "<div id=\"ir-Yes\" class=\"swap\"><span>Yes</span></div>", 'n' => "<div class=\"swap\" id=\"ir-No\"><span>No</span></div>")); + $liste["item"][] = array( 'field' => "server_id", @@ -71,7 +72,7 @@ 'width' => "", 'value' => ""); -$liste["item"][] = array( 'field' => "address", +$liste["item"][] = array( 'field' => "source", 'datatype' => "VARCHAR", 'formtype' => "TEXT", 'op' => "like", @@ -81,13 +82,14 @@ 'value' => ""); -$liste["item"][] = array( 'field' => "recipient", +$liste["item"][] = array( 'field' => "type", 'datatype' => "VARCHAR", - 'formtype' => "TEXT", - 'op' => "like", - 'prefix' => "%", - 'suffix' => "%", + 'formtype' => "SELECT", + 'op' => "=", + 'prefix' => "", + 'suffix' => "", 'width' => "", - 'value' => ""); + 'value' => array('recipient' => 'Recipient', 'sender' => 'Sender', 'client' => 'Client')); + ?> \ No newline at end of file -- Gitblit v1.9.1