Index: syndication/syndication.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/syndication/syndication.module,v
retrieving revision 1.29
diff -u -F^function -r1.29 syndication.module
--- syndication/syndication.module	9 Apr 2004 13:45:48 -0000	1.29
+++ syndication/syndication.module	20 Jun 2004 23:45:52 -0000
@@ -1,10 +1,17 @@
 <?php
 
-function syndication_link($type) {
-  if ($type == 'system' && user_access('access content')) {
-    $links[] = menu('syndication', t('syndication'), 'syndication_page', 6);
-  }
-  return $links ? $links : array();
+/**
+ * Implementation of hook_menu().
+ */
+function syndication_menu() {
+  $items = array();
+
+  $items[] = array('path' => 'syndication', 'title' => t('syndication'),
+    'access' => user_access('access content'),
+    'callback' => 'syndication_page',
+    'weight' => 6);
+
+  return $items;
 }
 
 function syndication_block($op = "list", $delta = 0) {
