From 28391b4ec32d25f688f9d8a96a66e484d6864e67 Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Thu, 12 Apr 2012 06:07:10 -0400 Subject: [PATCH] - Fix "false" placeholder in contact notes textarea --- installer/config.php | 63 ++++++++++++++++++------------- 1 files changed, 37 insertions(+), 26 deletions(-) diff --git a/installer/config.php b/installer/config.php index b71e3d5..bd676b1 100644 --- a/installer/config.php +++ b/installer/config.php @@ -59,6 +59,30 @@ <div>The name of your service (used to compose page titles)</div> </dd> +<dt class="propname">support_url</dt> +<dd> +<?php + +$input_support = new html_inputfield(array('name' => '_support_url', 'size' => 50, 'id' => "cfgsupporturl")); +echo $input_support->show($RCI->getprop('support_url')); + +?> +<div>Provide an URL where a user can get support for this Roundcube installation.<br/>PLEASE DO NOT LINK TO THE ROUNDCUBE.NET WEBSITE HERE!</div> +<p class="hint">Enter an absolute URL (inculding http://) to a support page/form or a mailto: link.</p> +</dd> + +<dt class="propname">skin_logo</dt> +<dd> +<?php + +$input_skin = new html_inputfield(array('name' => '_skin_logo', 'size' => 50, 'id' => "cfgskinlogo")); +echo $input_skin->show($RCI->getprop('skin_logo')); + +?> +<div>Custom image to display instead of the Roundcube logo.</div> +<p class="hint">Enter a URL relative to the document root of this Roundcube installation.</p> +</dd> + <dt class="propname">temp_dir</dt> <dd> <?php @@ -68,20 +92,6 @@ ?> <div>Use this folder to store temp files (must be writeable for webserver)</div> -</dd> - - -<dt class="propname">ip_check</dt> -<dd> -<?php - -$check_ipcheck = new html_checkbox(array('name' => '_ip_check', 'id' => "cfgipcheck")); -echo $check_ipcheck->show(intval($RCI->getprop('ip_check')), array('value' => 1)); - -?> -<label for="cfgipcheck">Check client IP in session authorization</label><br /> - -<p class="hint">This increases security but can cause sudden logouts when someone uses a proxy with changing IPs.</p> </dd> <dt class="propname">des_key</dt> @@ -95,6 +105,19 @@ <div>This key is used to encrypt the users imap password before storing in the session record</div> <p class="hint">It's a random generated string to ensure that every installation has its own key. If you enter it manually please provide a string of exactly 24 chars.</p> +</dd> + +<dt class="propname">ip_check</dt> +<dd> +<?php + +$check_ipcheck = new html_checkbox(array('name' => '_ip_check', 'id' => "cfgipcheck")); +echo $check_ipcheck->show(intval($RCI->getprop('ip_check')), array('value' => 1)); + +?> +<label for="cfgipcheck">Check client IP in session authorization</label><br /> + +<p class="hint">This increases security but can cause sudden logouts when someone uses a proxy with changing IPs.</p> </dd> <dt class="propname">enable_caching</dt> @@ -510,18 +533,6 @@ ?> <div>Name of interface skin (folder in /skins)</div> -</dd> - -<dt class="propname">skin_logo</dt> -<dd> -<?php - -$input_skin = new html_inputfield(array('name' => '_skin_logo', 'size' => 50, 'id' => "cfgskinlogo")); -echo $input_skin->show($RCI->getprop('skin_logo')); - -?> -<div>Custom image to display instead of the Roundcube logo.</div> -<p class="hint">Enter a URL relative to the document root of this Roundcube installation.</p> </dd> <dt class="propname">mail_pagesize <span class="userconf">*</span></dt> -- Gitblit v1.9.1