|
From: Jon O. <jon...@us...> - 2006-08-14 10:46:51
|
Update of /cvsroot/mxbb/mx_linkdb In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv24165/modules/mx_linkdb Modified Files: db_upgrade.php Log Message: Upgrade fix Bug for category view cache update Index: db_upgrade.php =================================================================== RCS file: /cvsroot/mxbb/mx_linkdb/db_upgrade.php,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** db_upgrade.php 13 Aug 2006 19:43:51 -0000 1.17 --- db_upgrade.php 14 Aug 2006 10:46:47 -0000 1.18 *************** *** 209,212 **** --- 209,220 ---- $message .= mx_do_install_upgrade( $sql ); + + // + // Empty module cache + // + include_once( $mx_root_path . 'includes/mx_functions_tools.' . $phpEx ); + $module_cache = new module_cache($mx_root_path . 'modules/mx_linkdb/linkdb/'); + $module_cache->tidy(); + $module_cache->save(); } else |