]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/HTML/Error.php
- Cambio un query a BASE.Tabla
[mecon/meconlib.git] / lib / MECON / HTML / Error.php
index 783394470735eb730a0086645d8542b02829d97e..443cacff4be3d47ee317c39ed3d9e7dd353ed067 100644 (file)
@@ -24,7 +24,6 @@ Author:  Leandro Lucarella <llucar@mecon.gov.ar>
 $Id$
 -----------------------------------------------------------------------------*/
 
 $Id$
 -----------------------------------------------------------------------------*/
 
-// +X2C Class 163 :MECON_HTML_Error
 /**
  * Dibuja un mensaje de error en HTML.
  *
 /**
  * Dibuja un mensaje de error en HTML.
  *
@@ -39,9 +38,6 @@ class MECON_HTML_Error {
      */
     var $msg = '';
 
      */
     var $msg = '';
 
-    // ~X2C
-
-    // +X2C Operation 165
     /**
      * Constructor.
      *
     /**
      * Constructor.
      *
@@ -50,27 +46,25 @@ class MECON_HTML_Error {
      * @return void
      * @access public
      */
      * @return void
      * @access public
      */
-    function MECON_HTML_Error($msg = '') // ~X2C
+    function MECON_HTML_Error($msg = '')
     {
         // TODO - hacer que se le pueda pasar un PEAR_Error y que le saque el mensaje solita.
         $this->msg = $msg;
     }
     {
         // TODO - hacer que se le pueda pasar un PEAR_Error y que le saque el mensaje solita.
         $this->msg = $msg;
     }
-    // -X2C
 
 
-    // +X2C Operation 166
     /**
      * Dibuja el HTML.
      *
      * @return string
      * @access public
      */
     /**
      * Dibuja el HTML.
      *
      * @return string
      * @access public
      */
-    function toHtml() // ~X2C
+    function toHtml()
     {
         // FIXME - usar un estilo con class.
     {
         // FIXME - usar un estilo con class.
-        return '<DIV style="font-family: Arial; 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" align="center">' . $this->msg . '</div>';
     }
     }
-    // -X2C
 
 
-} // -X2C Class :MECON_HTML_Error
+}
 
 ?>
\ No newline at end of file
 
 ?>
\ No newline at end of file