summaryrefslogtreecommitdiff
path: root/roundcubemail/installer/config.php
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-09-21 12:50:15 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-09-21 12:50:15 +0000
commite201e1711d9e904e4119694808136bc3973dd71a (patch)
tree73dd2da4140efc14d90f8ba46fdaa99da2aa9a82 /roundcubemail/installer/config.php
parentcb3ad1ce49b485360ddfd36ef59be44b762c748a (diff)
Apply changes of installer script to trunk
git-svn-id: https://svn.roundcube.net/trunk@1877 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/installer/config.php')
-rw-r--r--roundcubemail/installer/config.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/installer/config.php b/roundcubemail/installer/config.php
index 53a4655ed..d5e10e8b4 100644
--- a/roundcubemail/installer/config.php
+++ b/roundcubemail/installer/config.php
@@ -30,10 +30,10 @@ if (!empty($_POST['submit'])) {
$textbox = new html_textarea(array('rows' => 16, 'cols' => 60, 'class' => "configfile"));
echo '<div><em>main.inc.php (<a href="index.php?_getfile=main">download</a>)</em></div>';
- echo $textbox->show($RCI->create_config('main'));
+ echo $textbox->show(($_SESSION['main.inc.php'] = $RCI->create_config('main')));
echo '<div style="margin-top:1em"><em>db.inc.php (<a href="index.php?_getfile=db">download</a>)</em></div>';
- echo $textbox->show($RCI->create_config('db'));
+ echo $textbox->show($_SESSION['db.inc.php'] = $RCI->create_config('db'));
echo '<p class="hint">Of course there are more options to configure.
Have a look at the config files or visit <a href="http://trac.roundcube.net/wiki/Howto_Config">Howto_Config</a> to find out.</p>';