diff -urp ../postblockOLD/postblock.module ./postblock.module
--- ../postblockOLD/postblock.module	2008-10-02 09:40:13.000000000 +1000
+++ ./postblock.module	2009-10-09 20:24:00.000000000 +1100
@@ -2,8 +2,7 @@
 // $Id: postblock.module,v 1.1.2.3 2008/10/01 23:40:13 eaton Exp $
 
 /**
- * @file postblock.module
- *
+ * @file
  * Exposes a simple sidebar block containing links to node creation pages that
  * the current user has access to. Designed for easy theming and convenience.
  */
@@ -70,8 +69,8 @@ function postblock_block($op = 'list', $
     $hidden_types = variable_get('postblock_hidden_types', array());
     $all_types = node_get_types('types');
     $list = array();
-    
-    foreach($all_types as $key => $value) {
+
+    foreach ($all_types as $key => $value) {
       if (empty($hidden_types[$key]) && node_access('create', $key)) {
         $list[] = $value;
       }
@@ -101,7 +100,7 @@ function postblock_preprocess_postblock(
       $item->help = '';
     }
     $item->type_class = str_replace('_', '-', $item->type);
-    
+
     switch (variable_get('postblock_destination', 'node')) {
       case 'destination':
         $options = array('query' => drupal_get_destination());
@@ -113,9 +112,9 @@ function postblock_preprocess_postblock(
         $options = array();
         break;
     }
-  
-    $item->url = url('node/add/' . $item->type, $options);
-    $item->link = l(t('Create a !typename', array('!typename' => $item->name)), 'node/add/' . $item->type, $options);
+
+    $item->url = url('node/add/'. $item->type, $options);
+    $item->link = l(t('Create a !typename', array('!typename' => $item->name)), 'node/add/'. $item->type, $options);
     $vars['items'][] = $item;
   }
 }
Only in .: postblock.patch
diff -urp ../postblockOLD/postblock.tpl.php ./postblock.tpl.php
--- ../postblockOLD/postblock.tpl.php	2008-10-02 09:25:24.000000000 +1000
+++ ./postblock.tpl.php	2009-10-09 20:24:44.000000000 +1100
@@ -2,8 +2,8 @@
 // $Id: postblock.tpl.php,v 1.1.2.2 2008/10/01 23:25:24 eaton Exp $
 
 /**
- * @file postblock.tpl.php
- * Controls the output of the  'Post content' sidebar block.
+ * @file
+ * Controls the output of the 'Post content' sidebar block.
  *
  * Available variables:
  * - $type_info: Raw data from node_get_types() for each content type that
