|
From: Jon O. <jon...@us...> - 2006-08-01 21:02:22
|
Update of /cvsroot/mxbb/mx_linkdb/linkdb In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv22573/modules/mx_linkdb/linkdb Modified Files: linkdb_common.php Log Message: massive update Index: linkdb_common.php =================================================================== RCS file: /cvsroot/mxbb/mx_linkdb/linkdb/linkdb_common.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** linkdb_common.php 8 Jul 2006 10:22:38 -0000 1.3 --- linkdb_common.php 1 Aug 2006 21:02:19 -0000 1.4 *************** *** 9,15 **** */ ! if( !defined('IN_PORTAL') ) { ! die("Hacking attempt"); } --- 9,15 ---- */ ! if ( !defined( 'IN_PORTAL' ) ) { ! die( "Hacking attempt" ); } *************** *** 61,75 **** */ // ! // Include linkdb data file // ! include_once( $module_root_path . 'linkdb/includes/linkdb_constants.' . $phpEx ); include_once( $module_root_path . 'linkdb/includes/functions.' . $phpEx ); - include_once( $module_root_path . 'linkdb/includes/functions_cache.' . $phpEx ); include_once( $module_root_path . 'linkdb/includes/functions_auth.' . $phpEx ); - //include_once( $module_root_path . 'linkdb/includes/functions_mx.' . $phpEx ); include_once( $module_root_path . 'linkdb/includes/functions_linkdb.' . $phpEx ); ! $linkdb_cache = new linkdb_cache(); $linkdb_functions = new linkdb_functions(); --- 61,88 ---- */ + // =================================================== + // Include Files + // =================================================== + include_once( $module_root_path . 'linkdb/includes/linkdb_constants.' . $phpEx ); + // ! // Load addon tools // ! // - Class module_cache ! // - Class mx_custom_fields ! // - Class mx_notification ! // - Class mx_text ! // - Class mx_text_formatting ! // ! include_once( $mx_root_path . 'includes/mx_functions_tools.' . $phpEx ); ! include_once( $module_root_path . 'linkdb/includes/functions.' . $phpEx ); include_once( $module_root_path . 'linkdb/includes/functions_auth.' . $phpEx ); include_once( $module_root_path . 'linkdb/includes/functions_linkdb.' . $phpEx ); ! // =================================================== ! // Load classes ! // =================================================== ! $linkdb_cache = new module_cache($module_root_path . 'linkdb/'); $linkdb_functions = new linkdb_functions(); |