Index: CHANGELOG.txt
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/feedapi/Attic/CHANGELOG.txt,v
retrieving revision 1.1.2.4.2.24
diff -u -p -r1.1.2.4.2.24 CHANGELOG.txt
--- CHANGELOG.txt	21 Aug 2009 09:31:12 -0000	1.1.2.4.2.24
+++ CHANGELOG.txt	21 Aug 2009 09:32:04 -0000
@@ -1,6 +1,8 @@
 // $Id: CHANGELOG.txt,v 1.1.2.4.2.24 2009/08/21 09:31:12 aronnovak Exp $
 FeedAPI 1.9, XXXX-XX-XX
 -----------------------
+- Refresh and Remove items tabs are now protected by advanced feedapi options
+  permission
 
 FeedAPI 1.8, 2009-08-12
 -----------------------
Index: feedapi.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/feedapi/feedapi.module,v
retrieving revision 1.23.2.119.2.72
diff -u -p -r1.23.2.119.2.72 feedapi.module
--- feedapi.module	11 Aug 2009 06:54:09 -0000	1.23.2.119.2.72
+++ feedapi.module	21 Aug 2009 09:32:05 -0000
@@ -92,16 +92,14 @@ function feedapi_menu() {
     'page callback' => 'feedapi_refresh',
     'page arguments' => array(1),
     'type' => MENU_LOCAL_TASK,
-    'access callback' => '_feedapi_op_access',
-    'access arguments' => array(1),
+    'access arguments' => array('advanced feedapi options'),
   );
   $items['node/%node/purge'] = array(
     'title' => 'Remove items',
     'page callback' => 'feedapi_invoke',
     'page arguments' => array("purge", 1, 'items'),
     'type' => MENU_LOCAL_TASK,
-    'access callback' => '_feedapi_op_access',
-    'access arguments' => array(1),
+    'access arguments' => array('advanced feedapi options'),
   );
   return $items;
 }
