--- article.module	2006-06-25 12:14:33.000000000 -0400
+++ article.module	2006-06-29 23:09:16.000000000 -0400
@@ -113,8 +113,12 @@
 function article_menu($may_cache) {
   $items = array();
 
-  $items[] = array('path' => 'article', 'title' => t('Article listings'), 'callback' => 'article_page', 'access' => user_access('access content'), 'type' => MENU_CALLBACK);
-
+  if (variable_get('article_title', t('Articles'))<>"") {
+  	$items[] = array('path' => 'article', 'title' => variable_get('article_title', t('Articles')), 'callback' => 'article_page', 'access' => user_access('access content'), 'type' => MENU_CALLBACK);
+	} 
+	else { 
+		$items[] = array('path' => 'article', 'title' => t('Article listings'), 'callback' => 'article_page', 'access' => user_access('access content'), 'type' => MENU_CALLBACK);
+  	}
   return $items;
 }
 
@@ -527,7 +531,7 @@
  Displays more information content, suck as "more" links, and
  feed images.
 
- @return formatted string containint the output.
+ @return formatted string containing the output.
 **/
 function theme_more_info($content) {
   return "<div class=\"more-link\">$content</div>";
