X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/0030a5e4c8ffc960a1ab7413eb1cc1ef111bf366..707e1370e56a9a9536a81aab72b530c48e3d361e:/sistema/www/noticias.php?ds=sidebyside
diff --git a/sistema/www/noticias.php b/sistema/www/noticias.php
index 0ffde4d..9bc004f 100644
--- a/sistema/www/noticias.php
+++ b/sistema/www/noticias.php
@@ -23,7 +23,19 @@
?>
- include 'noticias.htm'?>
+
+ require_once '../../lib/noticia.php';
+ require_once '../local_lib/HTML_Noticia.php';
+
+ $n = new noticia(1294);
+ $not = new HTML_Noticia($n);
+ $not->setNuevo(true);
+ $ht = new HTML_Table(array('width'=>'600', 'border'=>'0', 'cellspacing'=>'0'));
+ $ht->addRow(array($not, $not));
+ $ht->addRow(array($not, $not));
+ $ht->addRow(array($not, $not));
+ $ht->display();
+ ?>
|