]> git.mjollnir.org Git - s9y.git/commitdiff
Verbose error indication
authorgarvinhicking <garvinhicking>
Tue, 9 May 2006 07:15:35 +0000 (07:15 +0000)
committergarvinhicking <garvinhicking>
Tue, 9 May 2006 07:15:35 +0000 (07:15 +0000)
include/admin/installer.inc.php

index 36ddc05d05d789cb7779a7e374e6d6420742f0a1..40f1da7330b1e0edee0defc638288a2611b8f080 100644 (file)
@@ -36,11 +36,11 @@ function serendipity_installerResultDiagnose($result, $s) {
         return '<span style="color: green; font-weight: bold">'. $s .'</span>';
     }
     if ( $result === S9Y_I_WARNING ) {
-        return '<span style="color: orange; font-weight: bold">'. $s .'</span>';
+        return '<span style="color: orange; font-weight: bold">'. $s .' [?]</span>';
     }
     if ( $result === S9Y_I_ERROR ) {
         $errorCount++;
-        return '<span style="color: red; font-weight: bold">'. $s .'</span>';
+        return '<span style="color: red; font-weight: bold">'. $s .' [!]</span>';
     }
 }