# HG changeset patch # User Sadrul Habib Chowdhury # Date 1209102828 0 # Node ID 17cd33c5b5efe2b3800cf06020b409558b6ea3cc # Parent f9a88e661fffe20277c2e7b496afde592d7b825a Fix a bug where the list of loaded plugins would get removed when switching between different operating systems. Thanks a bunch to darthmarth37|LT and Vorondil for the help pin-pointing the bug. diff -r f9a88e661fff -r 17cd33c5b5ef ChangeLog --- a/ChangeLog Fri Apr 25 03:51:55 2008 +0000 +++ b/ChangeLog Fri Apr 25 05:53:48 2008 +0000 @@ -5,7 +5,9 @@ * In MySpaceIM, messages from spambots are discarded (Justin Williams) * Strip mIRC formatting codes from quit and part messages. * IRC now displays ban lists in-channel for joined channels. - + * Fixed a bug where the list of loaded plugins would get removed when + switching between different operating systems. + Pidgin: * The typing notification in the conversation history can be disabled or customized (font, color etc.) in .gtkrc-2.0. diff -r f9a88e661fff -r 17cd33c5b5ef libpurple/plugin.c --- a/libpurple/plugin.c Fri Apr 25 03:51:55 2008 +0000 +++ b/libpurple/plugin.c Fri Apr 25 05:53:48 2008 +0000 @@ -1294,7 +1294,7 @@ /* Strip the extension */ if (basename) - basename = purple_plugin_get_basename(filename); + basename = purple_plugin_get_basename(basename); if (((plugin = purple_plugins_find_with_filename(filename)) != NULL) || (basename && (plugin = purple_plugins_find_with_basename(basename)) != NULL) ||