Добавляем id к каждой label в формах Drupal

Очень вот потребовалась тонкая настройка темы в Drupal. Причем вышло так, что в одном fieldset'е находилось несколько label и полей. А нужно было сдвинуть всего одну label. Что делать - пропатчим ядро! =)

Извиняюсь за пути, но кому надо тот поймет:

--- www/dr.localhost/includes/form.inc  2008-04-07 18:37:09.000000000 +0400
+++ /media/hda7/!Soft/_cms/drupal/drupal-5.7/includes/form.inc  2008-03-16 10:44:42.000000000 +0300
@@ -1543,7 +1543,7 @@
   if (!empty($element['#title'])) {
     $title = $element['#title'];
     if (!empty($element['#id'])) {
-      $output .= ' <label id="label-of-'.$element['#id'].'" for="'. $element['#id'] .'">'. t('!title: !required', array('!title' => filter_xss_admin($title), '!required' => $required)) ."</label>\n";
+      $output .= ' <label for="'. $element['#id'] .'">'. t('!title: !required', array('!title' => filter_xss_admin($title), '!required' => $required)) ."</label>\n";
     }
     else {
       $output .= ' <label>'. t('!title: !required', array('!title' => filter_xss_admin($title), '!required' => $required)) ."</label>\n";