|
From: Jon O. <jon...@us...> - 2005-10-12 15:40:37
|
Update of /cvsroot/mxbb/mx_pafiledb/pafiledb/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16551/modules/mx_pafiledb/pafiledb/includes Modified Files: functions_pafiledb.php Log Message: rewritten part of the quickdl block: - now better in sync with navigation menu Index: functions_pafiledb.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/includes/functions_pafiledb.php,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** functions_pafiledb.php 1 Oct 2005 14:15:19 -0000 1.18 --- functions_pafiledb.php 12 Oct 2005 15:40:20 -0000 1.19 *************** *** 873,877 **** } ! function category_display_quickdl( $cat_id = PA_ROOT_CAT ) { global $db, $pafiledb_template, $lang, $userdata, $phpEx, $images; --- 873,877 ---- } ! function category_display_quickdl( $cat_id = PA_ROOT_CAT, $pa_get_dynamic = array() ) { global $db, $pafiledb_template, $lang, $userdata, $phpEx, $images; *************** *** 927,931 **** $sub_cat = $this->get_sub_cat( $subcat_id ); ! $map_xtra = isset( $_REQUEST['dynamic_block'] ) ? '&dynamic_block=' . $_REQUEST['dynamic_block'] : ''; $pafiledb_template->assign_block_vars( 'no_cat_parent', array( 'IS_HIGHER_CAT' => false, /* - orig --- 927,932 ---- $sub_cat = $this->get_sub_cat( $subcat_id ); ! $map_xtra = !empty( $pa_get_dynamic[$subcat_id] ) ? '&dynamic_block=' . $pa_get_dynamic[$subcat_id] : ''; ! $pafiledb_template->assign_block_vars( 'no_cat_parent', array( 'IS_HIGHER_CAT' => false, /* - orig |