|
From: Jon O. <jon...@us...> - 2006-06-17 20:13:25
|
Update of /cvsroot/mxbb/mx_pafiledb/pafiledb In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv22598/modules/mx_pafiledb/pafiledb Modified Files: pafiledb_common.php Log Message: Finalizing module Index: pafiledb_common.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/pafiledb_common.php,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** pafiledb_common.php 7 Jun 2006 20:29:52 -0000 1.14 --- pafiledb_common.php 17 Jun 2006 20:13:22 -0000 1.15 *************** *** 90,125 **** $pafiledb_user = new pafiledb_user_info(); $pafiledb = new pafiledb_public(); - - /** - * Enter description here... - * - * @param unknown_type $args - * @param unknown_type $force_standalone_mode - * @param unknown_type $non_html_amp - * @return unknown - */ - function pa_this_mxurl( $args = '', $force_standalone_mode = false, $non_html_amp = false ) - { - global $mx_root_path, $module_root_path, $page_id, $phpEx, $is_block; - - if ( $force_standalone_mode || !$is_block ) - { - $mxurl = $module_root_path . 'dload.' . $phpEx . ( $args == '' ? '' : '?' . $args ); - } - else - { - $mxurl = $mx_root_path . 'index.' . $phpEx; - - if ( is_numeric( $page_id ) ) - { - $mxurl .= '?page=' . $page_id . ( $args == '' ? '' : ( $non_html_amp ? '&' : '&' ) . $args ); - } - else - { - $mxurl .= ( $args == '' ? '' : '?' . $args ); - } - } - return $mxurl; - } - ?> \ No newline at end of file --- 90,92 ---- |