1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-17 12:48:24 +01:00

XHTML compliance

This commit is contained in:
e107steved 2007-12-24 16:21:16 +00:00
parent 18fbd091d9
commit d467b882aa

View File

@ -11,9 +11,9 @@
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/gsitemap.php,v $
| $Revision: 1.1.1.1 $
| $Date: 2006-12-02 04:33:05 $
| $Author: mcfly_e107 $
| $Revision: 1.2 $
| $Date: 2007-12-24 16:21:00 $
| $Author: e107steved $
+----------------------------------------------------------------------------+
*/
require_once("class2.php");
@ -30,7 +30,7 @@ if(e_QUERY == "show")
foreach($nfArray as $nfa)
{
$url = (substr($nfa['gsitemap_url'],0,4)== "http")? $nfa['gsitemap_url'] : SITEURL.$tp->replaceConstants($nfa['gsitemap_url'],TRUE);
$text .= "<li>".$tp->toHTML($nfa['gsitemap_cat'],"","defs").": <a href='".$url."'>".$tp->toHTML($nfa['gsitemap_name'],"","defs")."</a><br />\n";
$text .= "<li>".$tp->toHTML($nfa['gsitemap_cat'],"","defs").": <a href='".$url."'>".$tp->toHTML($nfa['gsitemap_name'],"","defs")."</a></li>\n";
}
$text .= "</ul></div>";