summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2013-06-21 13:47:25 +0200
committerAleksander Machniak <alec@alec.pl>2013-06-21 13:47:25 +0200
commite221786bbea6a6e9c50d99ea56f2f84ec5c78c90 (patch)
tree854a0933dfd73515f989a6d41f1ae57acd624507
parent738c446078fd4475c5e0222c2c0ab4242d1bf5b2 (diff)
Remove confusing note about closing ?> tag and no characters after it.
We currently do not require closing tag in config file, we also correctly handle characters after the closing tag (#1489179)
-rw-r--r--installer/config.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/installer/config.php b/installer/config.php
index 97a51280c..ed9adf9d4 100644
--- a/installer/config.php
+++ b/installer/config.php
@@ -29,8 +29,8 @@ $_SESSION['allowinstaller'] = true;
if (!empty($_POST['submit'])) {
echo '<p class="notice">Copy or download the following configurations and save them in two files';
- echo ' (names above the text box) within the <tt>'.RCMAIL_CONFIG_DIR.'</tt> directory of your Roundcube installation.<br/>';
- echo ' Make sure that there are no characters outside the <tt>&lt;?php ?&gt;</tt> brackets when saving the files.</p>';
+ echo ' (names above the text box) within the <tt>'.RCMAIL_CONFIG_DIR.'</tt> directory of your Roundcube installation.';
+ echo '</p>';
$textbox = new html_textarea(array('rows' => 16, 'cols' => 60, 'class' => "configfile"));