|
From: Jon O. <jon...@us...> - 2006-08-14 10:48:02
|
Update of /cvsroot/mxbb/mx_pafiledb In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv24626/modules/mx_pafiledb Modified Files: db_upgrade.php Log Message: minor upgrade fix - cache Index: db_upgrade.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/db_upgrade.php,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** db_upgrade.php 13 Aug 2006 19:44:45 -0000 1.19 --- db_upgrade.php 14 Aug 2006 10:47:58 -0000 1.20 *************** *** 237,240 **** --- 237,248 ---- $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_pafiledb/pafiledb/'); + $module_cache->tidy(); + $module_cache->save(); } else |