Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!
Index: D:/Devel/CodeBlocks/trunk/src/src/main.cpp===================================================================--- D:/Devel/CodeBlocks/trunk/src/src/main.cpp (revision 1886)+++ D:/Devel/CodeBlocks/trunk/src/src/main.cpp (working copy)@@ -1104,7 +1104,9 @@ default: { cbMimePlugin* plugin = Manager::Get()->GetPluginManager()->GetMIMEHandlerForFile(filename);- return plugin && plugin->OpenFile(filename) == 0;+ bool res = plugin && plugin->OpenFile(filename) == 0;+ if (res) AddToRecentFilesHistory(filename);+ return res; } } return true;