--- weblinks.module 2009-07-07 01:34:46.000000000 +0100 +++ weblinks.module 2009-07-22 17:33:29.000000000 +0100 @@ -631,7 +631,7 @@ function _weblinks_unclassed() { $noclass = new stdClass(); $noclass->tid = $noclass->vid = $noclass->depth = 0; $noclass->name = variable_get('weblinks_unclassified_title', t('Unclassified')); - $noclass->description = $noclass->name ? variable_get('weblinks_unclassified_desc', t('These links have not been assigned a group.')) : ''; + $noclass->description = variable_get('weblinks_unclassified_desc', t('These links have not been assigned a group.')); return $noclass; } @@ -647,7 +647,7 @@ function _weblinks_unpublished() { $noclass->vid = $noclass->depth = 0; $noclass->tid = 'unpublished'; $noclass->name = variable_get('weblinks_unpublished_title', t('Unpublished')); - $noclass->description = $noclass->name ? variable_get('weblinks_unpublished_desc', t('These links are not published and need to be reviewed.')) : ''; + $noclass->description = variable_get('weblinks_unpublished_desc', t('These links are not published and need to be reviewed.')); return $noclass; }