Esempio n. 1
0
if (false === ($result = $mv->select())) {
    die('SHOULD NOT HAPPEN 4');
}
while (false !== ($row = $mv->fetch($result, GDO::ARRAY_O))) {
    $row->saveVar('mv_val', GWF_ModuleLoader::getVarValueMV($row->getVar('mv_value'), $row));
}
$mv->free($result);
echo "Naming sheme cleanup...<br/>\n";
GWF_ModuleLoader::loadModuleFS('Login')->onInclude();
$lf = GDO::table('GWF_LoginFailure');
GWF_ModuleLoader::renameColumn($lf, 'ip', 'logfail_ip');
GWF_ModuleLoader::renameColumn($lf, 'userid', 'logfail_uid');
GWF_ModuleLoader::renameColumn($lf, 'timestamp', 'logfail_time');
$lm = GDO::table('GWF_LangMap');
GWF_ModuleLoader::renameColumn($lm, 'countryid', 'langmap_cid');
GWF_ModuleLoader::renameColumn($lm, 'langid', 'langmap_lid');
#
echo "Module_PM changed a lot ... <br/>\n";
if (false !== ($mod_pm = GWF_ModuleLoader::loadModuleFS('PM'))) {
    $mod_pm->onInclude();
    require_once 'install23pm.php';
}
echo "Module_Category changed a lot, but was unused.... reinstall wipe<br/>\n";
if (false !== ($mod_cat = GWF_ModuleLoader::loadModuleFS('Category'))) {
    GWF_ModuleLoader::installModule($mod_cat, true);
}
echo "Module Flags have changed<br/>\n";
GDO::table('GWF_Module')->update('module_options=module_options|2', 'module_options&4');
GDO::table('GWF_Module')->update('module_options=module_options-4', 'module_options&4');
echo "Register tokens<br/>\n";
GWF_Module::loadModuleDB('Register')->onInclude();