1
in the sitemap module is a plugin for the mydownloads module.
------>
// $Id: mydownloads.php,v 1.1 2005/04/07 09:23:42 gij Exp $
// FILE :: weblinks.php
// AUTHOR :: Ryuji AMANO
// WEB :: Ryu's Planning <http://ryus.biz/>
//
function b_sitemap_mydownloads(){
$xoopsDB =& Database::getInstance();
$block = sitemap_get_categoires_map($xoopsDB->prefix("mydownloads_cat"), "cid","pid", "title", "viewcat.php?cid=", "title");
return $block;
}
?>
Now i want to show the downloads and not the categories. So i have large list of all the downloads.
I have to change mydownloads_cat in mydownloads_downloads and viewcat.php in singlefile.php
I have to change more ( "cid","pid", "title", ) ????? Because only this changes are not working ;(
Some 1 know how to fix this?