rpicms

A CMS for the Raspberry Pi
git clone git://archive.git.mtrnord.blog/RpicmsTeam/rpicms.git
Log | Files | Refs | README | LICENSE

commit 6c2e896b3e4ef8fe0c23fbd64c1e4e6fa948c4fc
parent 8a567eb813fb234cfaeef19eaf129ea73ca21d8e
Author: MTRNord <mtrnord1@gmail.com>
Date:   Sat, 18 Apr 2015 23:16:43 +0200

design fix

Diffstat:
Minstall/index.php | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/install/index.php b/install/index.php @@ -32,14 +32,14 @@ if ($root_3[1] == 'core') { ################################ if (!extension_loaded('mysqli')) { if (!dl('mysqli.so')) { - echo "<span style=\"color:red;\">MySQLi</span> is not installed! Please install this module!</br>"; + echo "<p><span style=\"color:red;\">MySQLi</span> is not installed! Please install this module!</p></br>"; $mysql = 0; }else{ - echo "<span style=\"color:red;\">MySQLi</span> has been successfully loaded</br>"; + echo "<p><span style=\"color:green;\">MySQLi</span> has been successfully loaded</p></br>"; $mysql = 1; } }else{ - echo "<span style=\"color:red;\">MySQLi</span> has been successfully loaded</br>"; + echo "<p><span style=\"color:green;\">MySQLi</span> has been successfully loaded</p></br>"; $mysql = 1; } @@ -47,10 +47,10 @@ if (!extension_loaded('mysqli')) { # Check if Directory is writeable # ################################### if ( ! is_writable($root)) { - echo "<p> style=\"color:red;\"" . $root . '</p><p> must writable!!!</br>'; + echo "<p><span style=\"color:red;\">" . $root . '</span> must writable!!!</p></br>'; $dir = 1; } else { - echo "<p style=\"color:red;\">" . $root . "</p><p> is writeable!</p></br>"; + echo "<p><span style=\"color:green;\">" . $root . "</span> is writeable!</p></br>"; $dir = 1; }