From ed30c60150ffda0301eb1f8d30c93cac94de41df Mon Sep 17 00:00:00 2001 From: tbrehm <t.brehm@ispconfig.org> Date: Mon, 25 Jul 2011 10:38:22 -0400 Subject: [PATCH] Fixed some warnings in the installer. --- interface/web/mail/list/mail_user.list.php | 27 ++++++++++++++++++--------- 1 files changed, 18 insertions(+), 9 deletions(-) diff --git a/interface/web/mail/list/mail_user.list.php b/interface/web/mail/list/mail_user.list.php index f3e8c42..ec7b854 100644 --- a/interface/web/mail/list/mail_user.list.php +++ b/interface/web/mail/list/mail_user.list.php @@ -25,7 +25,7 @@ $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_user_list.php"; @@ -47,14 +47,23 @@ * Suchfelder *****************************************************/ -$liste["item"][] = array( 'field' => "email", - 'datatype' => "VARCHAR", - 'formtype' => "TEXT", - 'op' => "like", - 'prefix' => "%", - 'suffix' => "%", - 'width' => "", - 'value' => ""); +$liste["item"][] = array( 'field' => "email", + 'datatype' => "VARCHAR", + 'formtype' => "TEXT", + 'op' => "like", + 'prefix' => "%", + 'suffix' => "%", + 'width' => "", + 'value' => ""); + +$liste["item"][] = array( 'field' => "login", + 'datatype' => "VARCHAR", + 'formtype' => "TEXT", + 'op' => "like", + 'prefix' => "%", + 'suffix' => "%", + 'width' => "", + 'value' => ""); $liste["item"][] = array( 'field' => "name", 'datatype' => "VARCHAR", -- Gitblit v1.9.1