Index: simplenews.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/simplenews/simplenews.module,v
retrieving revision 1.48.2.42
diff -u -p -r1.48.2.42 simplenews.module
--- simplenews.module	12 Jul 2008 12:32:36 -0000	1.48.2.42
+++ simplenews.module	12 Jul 2008 13:04:14 -0000
@@ -611,10 +611,14 @@ function simplenews_user($op, &$edit, &$
         else {
           $subscriptions = t('Currently no subscriptions');
         }
-        $items[] = array('class' => 'item',
-          'title' => t('Current subscriptions'),
-          'value' => $subscriptions,
-        );
+        // When a user has no permission to subscribe and is not subscribed 
+        // we do not display the 'no subscriptions' message. 
+        if (user_access('subscribe to newsletters' || $subscriptions != t('Currently no subscriptions'))) {
+          $items[] = array('class' => 'item',
+            'title' => t('Current subscriptions'),
+            'value' => $subscriptions,
+          );
+        }
         if (user_access('subscribe to newsletters')) {
           $items[] = array('class' => 'item',
             'title' => t('Manage subscriptions'),
