Skip to content

Commit 82e5d5c

Browse files
committed
More CS fixes
1 parent 07fa590 commit 82e5d5c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

installer/test.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@
6262

6363
echo '<ul class="configwarnings">';
6464
foreach ($messages['replaced'] as $msg) {
65-
echo html::tag('li', null, html::span('propname', $msg['prop']) .
66-
' was replaced by ' . html::span('propname', $msg['replacement']));
65+
echo html::tag('li', null, html::span('propname', $msg['prop'])
66+
. ' was replaced by ' . html::span('propname', $msg['replacement']));
6767
}
6868
echo '</ul>';
6969
}

public_html/index.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -232,9 +232,9 @@
232232
// check if installer is still active
233233
if ($RCMAIL->config->get('enable_installer') && is_readable(__DIR__ . '/installer.php')) {
234234
$RCMAIL->output->add_footer(html::div(['id' => 'login-addon', 'style' => 'background:#ef9398; border:2px solid #dc5757; padding:0.5em; margin:2em auto; width:50em'],
235-
html::tag('h2', ['style' => 'margin-top:0.2em'], 'The Installer is still accessible') .
236-
html::p(null, 'The install script of your Roundcube installation is still available to everyone!') .
237-
html::p(null, 'Please <b>remove</b> the <tt>public_html/installer.php</tt> file from the Roundcube directory because
235+
html::tag('h2', ['style' => 'margin-top:0.2em'], 'The Installer is still accessible')
236+
. html::p(null, 'The install script of your Roundcube installation is still available to everyone!')
237+
. html::p(null, 'Please <b>remove</b> the <tt>public_html/installer.php</tt> file from the Roundcube directory because
238238
it may expose sensitive configuration data like server passwords and encryption keys
239239
to the public. Make sure you cannot access <a href="installer.php">the script</a> from your browser.')
240240
));

0 commit comments

Comments
 (0)