]> git.llucax.com Git - mecon/meconlib.git/commitdiff
Se agrega un TODO.
authorGonzalo Merayo <merayo@gmail.com>
Mon, 14 Jul 2003 22:36:55 +0000 (22:36 +0000)
committerGonzalo Merayo <merayo@gmail.com>
Mon, 14 Jul 2003 22:36:55 +0000 (22:36 +0000)
lib/MECON/HTML/Error.php

index 489d88a8e78dc5da81fc3722f76b561d1e7bc0e7..2d2917aad5e2b5d3c9c948eeb9f842ff8d0d3b56 100644 (file)
@@ -48,6 +48,7 @@ class MECON_HTML_Error {
      */
     function MECON_HTML_Error($msg = '') // ~X2C
     {
+        // TODO - hacer que se le pueda pasar un PEAR_Error y que le saque el mensaje solita.
         $this->msg = $msg;
     }
     // -X2C
@@ -62,7 +63,7 @@ class MECON_HTML_Error {
     function toHtml() // ~X2C
     {
         // FIXME - usar un estilo con class.
-        return '<DIV style="font-size: 11px; text-align: center; color: red">' . $this->msg . '</DIV>';
+        return '<DIV style="font-family: Arial; font-size: 11px; text-align: center; color: red">' . $this->msg . '</DIV>';
     }
     // -X2C