]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/Marco/Titulo.php
Se corrige un bugcito.
[mecon/meconlib.git] / lib / MECON / Marco / Titulo.php
index fbee3c98bec908de61043fda76708528c95770e9..872debd8c0f77cf0385e74886f9dbcfe165ee2d1 100644 (file)
@@ -36,25 +36,25 @@ class Titulo {
     /**
      * Array con los datos de configuracion del sistema.
      *
-     * @var    array $configuracion
+     * @var    string $titulo
      * @access private
      */
-    var $_configuracion;
+    var $_titulo;
 
     // ~X2C
 
     // +X2C Operation 52
     /**
-     * Constructor. Recibe como parametro el array de configuracion del sistema.
+     * Constructor. Recibe como parametro el titulo del sistema.
      *
-     * @param  array $configuracion 
+     * @param  string $titulo Titulo del sistema
      *
      * @return void
      * @access public
      */
-    function Titulo($configuracion) // ~X2C
+    function Titulo($titulo)// ~X2C
     {
-         $this->_configuracion  = $configuracion;
+        $this->_titulo  = $titulo;
     }
     // -X2C
 
@@ -65,9 +65,9 @@ class Titulo {
      * @return string
      * @access public
      */
-    function toHtml() // ~X2C
+    function toHtml()// ~X2C
     {
-        $TEXTO = "\n".'<title>'.$this->_configuracion['titulo_sistema'].'</title>'."\n";
+        $TEXTO = "\n".'<title>'.$this->_titulo.'</title>'."\n";
         return $TEXTO;
     }
     // -X2C
@@ -79,9 +79,9 @@ class Titulo {
      * @return string
      * @access public
      */
-    function darTitulo() // ~X2C
+    function darTitulo()// ~X2C
     {
-        return $this->_configuracion['titulo_sistema'];
+        return $this->_titulo;
     }
     // -X2C