Skip to content

Commit d2270c4

Browse files
author
cfoe
committed
replaced <br> styling for new-version msg by <p> for better themability
1 parent 8bee475 commit d2270c4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

interface/web/dashboard/dashboard.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,10 +109,10 @@
109109
((isset($new_version[2]) && $new_version[2] < 10) ? '0'.$new_version[2] : $new_version[2]) .
110110
((isset($new_version[3]) && $new_version[3] < 10) ? (($new_version[3] < 1) ? '00' : '0'.$new_version[3]) : @$new_version[3]);
111111
if($new_fullversion > $this_fullversion) {
112-
$info[] = array('info_msg' => 'There is a new Version of ISPConfig 3 available!<br>' .
113-
'This Version: ' . $v1 . '<br>' .
114-
'New Version : ' . $v2 .
115-
'<br><br><a href="http://www.ispconfig.org/ispconfig-3/download" target="ISPC">See more...</a>');
112+
$info[] = array('info_msg' => '<p>There is a new Version of ISPConfig 3 available!</p>' .
113+
'<p>This Version: <b>' . $v1 . '</b></p>' .
114+
'<p>New Version : ' . $v2 . '</b></p>' .
115+
'<p><a href="http://www.ispconfig.org/ispconfig-3/download" target="ISPC">See more...</a></p>');
116116
}
117117
}
118118

0 commit comments

Comments
 (0)