? d7.patch
Index: pqp.info
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/pqp/pqp.info,v
retrieving revision 1.1
diff -u -p -r1.1 pqp.info
--- pqp.info	9 May 2009 13:21:55 -0000	1.1
+++ pqp.info	13 May 2009 19:55:33 -0000
@@ -1,4 +1,5 @@
 name = "PHP Quick Profiler"
 description = "Provides integration of Particletree.com's PHP Quick Profiler."
 package = "Development"
-core = 6.x
+core = 7.x
+files[] = pqp.module
Index: pqp.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/pqp/pqp.module,v
retrieving revision 1.1
diff -u -p -r1.1 pqp.module
--- pqp.module	9 May 2009 13:21:55 -0000	1.1
+++ pqp.module	13 May 2009 19:55:33 -0000
@@ -32,18 +32,16 @@ function pqp_menu() {
     'page arguments' => array('pqp_settings'),
     'access arguments' => array('administer site configuration'),
   );
-  if (!$may_cache) {
-    $items['devel/pqp'] = array(
-      'title callback' => 'pqp_title_toggle',
-      'title arguments' => array(NULL),
-      'title' => 'foo',
-      'title' => 'PHP Quick Profiler',
-      'description' => 'Quickly enable or disable PHP Quick Profiler.',
-      'page callback' => 'pqp_toggle',
-      'access arguments' => array('access devel information'),
-      'menu_name' => 'devel',
-    );
-  }
+  $items['devel/pqp'] = array(
+    'title callback' => 'pqp_title_toggle',
+    'title arguments' => array(NULL),
+    'title' => 'foo',
+    'title' => 'PHP Quick Profiler',
+    'description' => 'Quickly enable or disable PHP Quick Profiler.',
+    'page callback' => 'pqp_toggle',
+    'access arguments' => array('access devel information'),
+    'menu_name' => 'devel',
+  );
   return $items;
 }
 
