Index: rounded_corners.info
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/rounded_corners/Attic/rounded_corners.info,v
retrieving revision 1.1.2.1
diff -u -u -p -r1.1.2.1 rounded_corners.info
--- rounded_corners.info	18 Jun 2007 23:07:01 -0000	1.1.2.1
+++ rounded_corners.info	10 Apr 2008 05:32:21 -0000
@@ -1,3 +1,4 @@
 ; $Id $
 name = Rounded corners
 description = "Enables rounded corners with JQuery"
+core = 6.x
Index: rounded_corners.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/rounded_corners/Attic/rounded_corners.module,v
retrieving revision 1.1
diff -u -u -p -r1.1 rounded_corners.module
--- rounded_corners.module	31 Mar 2007 10:54:58 -0000	1.1
+++ rounded_corners.module	10 Apr 2008 05:32:21 -0000
@@ -4,14 +4,16 @@
 
   function rounded_corners_menu() {
     $items = array();
-    $items[] = array(
-      'path' => 'admin/settings/rounded_corners',
-      'title' => t('Rounded corners'),
-      'callback' => 'drupal_get_form',
-      'callback arguments' => 'rounded_corners_settings',
-      'access' => user_access('access administration pages'),
+    $items['admin/settings/rounded_corners'] = array(
+      'title' => 'Rounded corners',
+      'description' => 'Add Rounded corners to css elements.',
+      'page callback' => 'drupal_get_form',
+      'page arguments' => array('rounded_corners_settings'),
+      'access arguments' => array('administer site configuration'),
       'type' => MENU_NORMAL_ITEM,
      );
+     
+
     return $items;
   }
 
@@ -33,7 +35,7 @@
     return system_settings_form($form);
   }
 
-  function rounded_corners_footer($main = 0) {
+  function rounded_corners_init($main = 0) {
     $path = rounded_corners_status();
     if ($path !== FALSE) {
       drupal_add_js($path);
