| | |
| | | <?php |
| | | |
| | | if (!class_exists('rcube_install') || !is_object($RCI)) { |
| | | die("Not allowed! Please open installer/index.php instead."); |
| | | } |
| | | |
| | | ?> |
| | | <form action="index.php?_step=3" method="post"> |
| | | |
| | | <h3>Check config files</h3> |
| | |
| | | |
| | | if (is_array($messages['missing'])) { |
| | | echo '<h3 class="warning">Missing config options</h3>'; |
| | | echo '<p class="hint">The following config options are not present in the current configuration.<br/>'; |
| | | echo 'Please check the default config files and add the missing properties to your local config files.</p>'; |
| | | |
| | | echo '<ul class="configwarings">'; |
| | | echo '<p class="hint">The following config options are not set (not present or empty) in the current configuration.<br/>'; |
| | | echo 'Please check the default config files and set the missing properties in your local config files.</p>'; |
| | | |
| | | echo '<ul class="configwarnings">'; |
| | | foreach ($messages['missing'] as $msg) { |
| | | echo html::tag('li', null, html::span('propname', $msg['prop']) . ($msg['name'] ? ': ' . $msg['name'] : '')); |
| | | } |
| | | } |
| | | echo '</ul>'; |
| | | } |
| | | |