Index: memcache_admin/memcache_admin.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/memcache/memcache_admin/memcache_admin.module,v retrieving revision 1.3.2.10.2.2 diff -u -p -r1.3.2.10.2.2 memcache_admin.module --- memcache_admin/memcache_admin.module 21 Nov 2008 15:18:32 -0000 1.3.2.10.2.2 +++ memcache_admin/memcache_admin.module 19 Aug 2010 13:03:59 -0000 @@ -231,6 +231,13 @@ function memcache_admin_shutdown() { } } + // Building theme registry in shutdown will break due to the cwd + // being changed to server root during shutdown function + // If the registry hasn't been built, we won't do it + if (!(function_exists('theme_get_registry') && theme_get_registry())) { + return; + } + if (variable_get('show_memcache_statistics', TRUE) && function_exists('user_access') && user_access('access memcache statistics')) { $stats = array();