? PATCH.txt
? storm--685140-3.patch
? storm--918750-19.patch
Index: stormorganization/stormorganization.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/storm/stormorganization/stormorganization.module,v
retrieving revision 1.11.4.40
diff -u -p -r1.11.4.40 stormorganization.module
--- stormorganization/stormorganization.module	9 Sep 2010 22:16:37 -0000	1.11.4.40
+++ stormorganization/stormorganization.module	2 Jan 2011 00:32:04 -0000
@@ -261,20 +261,6 @@ function stormorganization_form(&$node) 
     '#weight' => module_exists('content') ? content_extra_field_weight($node->type, 'group2') : -19,
   );
 
-   $form['group2']['prefix'] = array(
-    '#type' => 'textfield',
-    '#title' => t('Prefix'),
-    '#size' => 20,
-    '#default_value' => isset($node->prefix) ? $node->prefix : NULL,
-  );
-
-  $form['group2']['fullname'] = array(
-    '#type' => 'textfield',
-    '#title' => t('Fullname'),
-    '#size' => 40,
-    '#default_value' => isset($node->fullname) ? $node->fullname : NULL,
-  );
-
   $form['group3'] = array(
     '#type' => 'markup',
     '#theme' => 'storm_form_group',
@@ -409,13 +395,13 @@ function stormorganization_form(&$node) 
 
 function stormorganization_insert($node) {
   db_query("INSERT INTO {stormorganization}
-           (vid, nid, prefix, fullname, country, www, phone, email, currency,
+           (vid, nid, country, www, phone, email, currency,
            provstate, zip, city, address, taxid, orglanguage, iscustomer, isprovider, isactive, pricemode, price
            ) VALUES
-           (%d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s',
+           (%d, %d, '%s', '%s', '%s', '%s', '%s',
            '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, %d, '%s', %f
            )",
-            $node->vid, $node->nid, $node->prefix, $node->fullname, $node->country, $node->www, $node->phone, $node->email, $node->currency,
+            $node->vid, $node->nid, $node->country, $node->www, $node->phone, $node->email, $node->currency,
             $node->provstate, $node->zip, $node->city, $node->address, $node->taxid, 
             $node->orglanguage, $node->iscustomer, $node->isprovider, $node->isactive, $node->pricemode, $node->price
             );
@@ -428,10 +414,10 @@ function stormorganization_update($node)
   }
   else {
     db_query("UPDATE {stormorganization} SET
-              prefix = '%s', fullname = '%s', country='%s', www='%s', phone='%s', email='%s', currency = '%s',
+              country='%s', www='%s', phone='%s', email='%s', currency = '%s',
               provstate = '%s', zip = '%s', city = '%s', address = '%s', taxid = '%s', orglanguage = '%s',
               iscustomer=%d, isprovider=%d, isactive=%d, pricemode='%s', price=%f WHERE vid = %d",
-              $node->prefix, $node->fullname, $node->country, $node->www, $node->phone, $node->email, $node->currency,
+              $node->country, $node->www, $node->phone, $node->email, $node->currency,
               $node->provstate, $node->zip, $node->city, $node->address, $node->taxid, $node->orglanguage,
               $node->iscustomer, $node->isprovider, $node->isactive, $node->pricemode, $node->price, $node->vid);
     if ($node->title != $node->title_old) {
Index: stormorganization/stormorganization.theme.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/storm/stormorganization/stormorganization.theme.inc,v
retrieving revision 1.2.4.21
diff -u -p -r1.2.4.21 stormorganization.theme.inc
--- stormorganization/stormorganization.theme.inc	28 Jul 2010 14:52:35 -0000	1.2.4.21
+++ stormorganization/stormorganization.theme.inc	2 Jan 2011 00:32:04 -0000
@@ -55,13 +55,6 @@ function theme_stormorganization_view($n
     '#suffix' => '</div>',
     '#weight' => module_exists('content') ? content_extra_field_weight($node->type, 'group2') : -19,
   );
-  
-  $node->content['group2'] ['fullname'] = array(
-    '#prefix' => '<div class="fullname">',
-    '#suffix' => '</div>',
-    '#value' => theme('storm_view_item', t('Fullname'), check_plain($node->fullname)),
-    '#weight' => 1,
-  );
 
   $node->content['group3'] = array(
     '#prefix' => '<div class="stormfields">',
