From ce358d8c7a645e255b99ab2a7adb73a819172d03 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Thu, 1 Feb 2007 21:44:36 +0000 Subject: [PATCH] - Patch #113286 by maynich: added missing t() function. --- modules/forum/forum.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/forum/forum.module b/modules/forum/forum.module index 534adcf9700..1351306cd96 100644 --- a/modules/forum/forum.module +++ b/modules/forum/forum.module @@ -676,7 +676,7 @@ function _forum_get_vid() { if (!$vid) { // Create the forum vocabulary. Assign the vocabulary a low weight so // it will appear first in forum topic create and edit forms. - $edit = array('name' => 'Forums', 'multiple' => 0, 'required' => 1, 'hierarchy' => 1, 'relations' => 0, 'module' => 'forum', 'weight' => -10, 'nodes' => array('forum' => 1)); + $edit = array('name' => t('Forums'), 'multiple' => 0, 'required' => 1, 'hierarchy' => 1, 'relations' => 0, 'module' => 'forum', 'weight' => -10, 'nodes' => array('forum' => 1)); taxonomy_save_vocabulary($edit); $vid = $edit['vid']; }