From: Matt M. <pro...@us...> - 2004-11-24 02:55:38
|
Update of /cvsroot/webschool/webschool/mods/Articles In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11261/mods/Articles Modified Files: index.php Log Message: XHTML bug fixes AND various bug fixes and feature implementations. Index: index.php =================================================================== RCS file: /cvsroot/webschool/webschool/mods/Articles/index.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** index.php 20 Nov 2004 01:50:51 -0000 1.2 --- index.php 24 Nov 2004 02:54:13 -0000 1.3 *************** *** 35,43 **** $result = dbr(); ! $smarty->assign("prettytitle", $result['prettytitle']); ! $smarty->assign("author", $result['owner'] ); ! $smarty->assign("published", $result['published']); ! $smarty->assign("content", $result['content']); ! $smarty->assign("updated", $result['lastupdate'] ); $smarty->display("mods/articles.read.tpl"); } --- 35,39 ---- $result = dbr(); ! $smarty->assign("article", $result); $smarty->display("mods/articles.read.tpl"); } |