Index: devel_themer.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/devel/devel_themer.module,v
retrieving revision 1.32.2.24
diff -u -r1.32.2.24 devel_themer.module
--- devel_themer.module	11 Jun 2009 16:48:26 -0000	1.32.2.24
+++ devel_themer.module	27 Aug 2009 15:32:43 -0000
@@ -488,7 +488,8 @@
 
 // We save the huge js array here instead of hook_footer so we can catch theme('page')
 function devel_themer_exit() {
-  if (!empty($GLOBALS['devel_theme_calls']) && $_SERVER['REQUEST_METHOD'] != 'POST') {
+  global $user;
+  if (!empty($GLOBALS['devel_theme_calls']) && $_SERVER['REQUEST_METHOD'] != 'POST' && $user->uid) {
     // A random string that is sent to the browser. It enables the popup to retrieve params/variables from this request.
     $request_id = uniqid(rand());
     // Write the variables information to the a file. It will be retrieved on demand via AJAX.

