diff options
Diffstat (limited to 'installer/views/installer.txt.php')
| -rw-r--r-- | installer/views/installer.txt.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/installer/views/installer.txt.php b/installer/views/installer.txt.php index 3b6f0512..e7dc155f 100644 --- a/installer/views/installer.txt.php +++ b/installer/views/installer.txt.php @@ -1,4 +1,5 @@ -<?php defined("SYSPATH") or die("No direct script access."); +<?php defined("SYSPATH") or die("No direct script access.") ?> +<? function green_start() { return "\x1B[32m"; } @@ -16,7 +17,7 @@ function magenta_start() { } function print_msg($header, $msg, $error) { - $format = "| %-21.21s | %-81.81s |\n"; + $format = "| %-21.21s | %-81.81s |\n"; foreach (explode("\n", wordwrap($msg, 72)) as $text) { if ($error) { printf($format, $header, red_start() . $text . color_end()); @@ -36,7 +37,7 @@ foreach (self::$messages as $section) { echo "+", str_repeat("-", 98), "+\n"; foreach ($section["msgs"] as $header => $msg) { - print_msg($header, $msg["text"], $msg["error"]); + print_msg($header, $msg["text"], $msg["error"]); } } |
