示例#1
0
function lastdownload()
{
    global $block_title;
    if ($block_title == '') {
        $title = translate("last downloadable files");
    } else {
        $title = $block_title;
    }
    $boxstuff = '<ul>';
    $boxstuff .= topdownload_data('short', 'ddate');
    $boxstuff .= '</ul>';
    if ($boxstuff == '<ul></ul>') {
        $boxstuff = '';
    }
    themesidebox($title, $boxstuff);
}
示例#2
0
function lastdownload()
{
    global $block_title;
    if ($block_title == "") {
        $title = translate("last downloadable files");
    } else {
        $title = $block_title;
    }
    $boxstuff = topdownload_data("short", "ddate");
    themesidebox($title, $boxstuff);
}