rpicms

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

commit 8a567eb813fb234cfaeef19eaf129ea73ca21d8e
parent 15b15206c0217d1817b91d530bf554db3f4a17a7
Author: MTRNord <mtrnord1@gmail.com>
Date:   Sat, 18 Apr 2015 23:13:53 +0200

More design improvements

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 "MySQLi is not installed! Please install this module!</br>"; + echo "<span style=\"color:red;\">MySQLi</span> is not installed! Please install this module!</br>"; $mysql = 0; }else{ - echo "MySQLi has been successfully loaded</br>"; + echo "<span style=\"color:red;\">MySQLi</span> has been successfully loaded</br>"; $mysql = 1; } }else{ - echo "MySQLi has been successfully loaded</br>"; + echo "<span style=\"color:red;\">MySQLi</span> has been successfully loaded</br>"; $mysql = 1; } @@ -47,10 +47,10 @@ if (!extension_loaded('mysqli')) { # Check if Directory is writeable # ################################### if ( ! is_writable($root)) { - echo $root . ' must writable!!!</br>'; + echo "<p> style=\"color:red;\"" . $root . '</p><p> must writable!!!</br>'; $dir = 1; } else { - echo $root . "Is writeable!</br>"; + echo "<p style=\"color:red;\">" . $root . "</p><p> is writeable!</p></br>"; $dir = 1; }