diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-12-29 09:35:01 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-12-29 09:35:01 +0000 |
| commit | fae8674359063881ab6d2a62eba6bf815de290db (patch) | |
| tree | d252ab8881123334ddecac999f3f354642bd9780 /roundcubemail/installer/config.php | |
| parent | 8f96f6d95ef85779395a46e558d6d412e4407ff7 (diff) | |
- Add separate pagesize setting for mail messages and contacts (#1488269)
git-svn-id: https://svn.roundcube.net/trunk@5662 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/installer/config.php')
| -rw-r--r-- | roundcubemail/installer/config.php | 27 |
1 files changed, 23 insertions, 4 deletions
diff --git a/roundcubemail/installer/config.php b/roundcubemail/installer/config.php index dabc478c9..b71e3d5d5 100644 --- a/roundcubemail/installer/config.php +++ b/roundcubemail/installer/config.php @@ -524,15 +524,34 @@ echo $input_skin->show($RCI->getprop('skin_logo')); <p class="hint">Enter a URL relative to the document root of this Roundcube installation.</p> </dd> -<dt class="propname">pagesize <span class="userconf">*</span></dt> +<dt class="propname">mail_pagesize <span class="userconf">*</span></dt> <dd> <?php -$input_pagesize = new html_inputfield(array('name' => '_pagesize', 'size' => 6, 'id' => "cfgpagesize")); -echo $input_pagesize->show($RCI->getprop('pagesize')); +$pagesize = $RCI->getprop('mail_pagesize'); +if (!$pagesize) { + $pagesize = $RCI->getprop('pagesize'); +} +$input_pagesize = new html_inputfield(array('name' => '_mail_pagesize', 'size' => 6, 'id' => "cfgmailpagesize")); +echo $input_pagesize->show($pagesize); + +?> +<div>Show up to X items in the mail messages list view.</div> +</dd> + +<dt class="propname">addressbook_pagesize <span class="userconf">*</span></dt> +<dd> +<?php + +$pagesize = $RCI->getprop('addressbook_pagesize'); +if (!$pagesize) { + $pagesize = $RCI->getprop('pagesize'); +} +$input_pagesize = new html_inputfield(array('name' => '_addressbook_pagesize', 'size' => 6, 'id' => "cfgabookpagesize")); +echo $input_pagesize->show($pagesize); ?> -<div>Show up to X items in list view.</div> +<div>Show up to X items in the contacts list view.</div> </dd> <dt class="propname">prefer_html <span class="userconf">*</span></dt> |
