? 269972_readme_cleanup.txt
? update_meez_drupal_6.patch
Index: meez.info
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/meez/meez.info,v
retrieving revision 1.1.2.1
diff -u -p -r1.1.2.1 meez.info
--- meez.info	18 Jun 2007 23:06:51 -0000	1.1.2.1
+++ meez.info	3 Jul 2008 17:04:44 -0000
@@ -1,4 +1,6 @@
 ; $Id: meez.info,v 1.1.2.1 2007/06/18 23:06:51 dww Exp $
 name = Meez Integration
 description = Integrates meez avatars with your site.
-dependencies = profile
+dependencies[] = profile
+core = 6.x
+
Index: meez.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/meez/meez.module,v
retrieving revision 1.2.2.2
diff -u -p -r1.2.2.2 meez.module
--- meez.module	3 Jul 2008 16:42:19 -0000	1.2.2.2
+++ meez.module	3 Jul 2008 17:04:44 -0000
@@ -4,8 +4,8 @@
 /**
  * Implementation of hook_help().
  */
-function meez_help($section) {
-  switch ($section) {
+function meez_help($path, $arg) {
+  switch ($path) {
     case 'admin/help#meez':
       return t('Allows users to use their meez avatar for your site.');
     case 'admin/settings/meez':
@@ -17,20 +17,16 @@ function meez_help($section) {
  * Implementation of hook_menu().
  */
 
-function meez_menu($may_cache) {
-
+function meez_menu() {
   $items = array();
-  if ($may_cache) {
-    $items[] = array(
-      'path' => 'admin/settings/meez',
-      'title' => t('Meez Configuration'),
-      'description' => t('Configure how the Meez module interacts with your site.'),
-      'callback' => 'drupal_get_form',
-      'callback arguments' => array('meez_admin_settings'),
-      'access' => user_access('administer site configuration'),
-      'type' => MENU_NORMAL_ITEM,
-    );
-  }
+  $items['admin/settings/meez'] = array(
+    'title' => t('Meez Configuration'),
+    'description' => t('Configure how the Meez module interacts with your site.'),
+    'page callback' => 'drupal_get_form',
+    'page arguments' => array('meez_admin_settings'),
+    'access arguments' => array('administer site configuration'),
+    'type' => MENU_NORMAL_ITEM,
+  );
 
   return $items;
 }
@@ -164,7 +160,7 @@ function meez_call_meez_api($username, $
       
       break;
     default:
-      watchdog('meez', t('The meez import seems to be broken, due to "%error".', array('%error' => theme('placeholder', $result->code .' '. $result->error))), WATCHDOG_WARNING);
+      watchdog('meez', 'The meez import seems to be broken, due to "%error".', array('%error' => theme('placeholder', $result->code .' '. $result->error)), WATCHDOG_WARNING);
       drupal_set_message(t('The meez import seems to be broken, because of error "%error".', array('%error' => theme('placeholder', $result->code .' '. $result->error))));
   }
 
