--- custompage_util.inc.OLD	2010-03-15 14:22:46.000000000 +1100
+++ custompage_util.inc	2010-03-26 16:16:54.000238513 +1100
@@ -66,8 +66,12 @@ function custompage_view_tile( $name, $t
  *   same title exist, only the first one will be returned.
  * @param $type
  *   node type
+ * @param $teaser_only
+ *   Boolean: whether or not to display a teaser instead of the full node
+ * @param $display_title
+ *   Boolean: whether or not to display the node's title (links to the node)
  */
-function custompage_node_tile( $key, $type = '', $teaser_only = FALSE ) {
+function custompage_node_tile( $key, $type = '', $teaser_only = FALSE, $display_title = TRUE ) {
   global $language;
   
   $langcode = $language->language; //ISO2 code
@@ -93,7 +97,7 @@ function custompage_node_tile( $key, $ty
     $node = node_load( $i18n_nid );
   } //Serve Default language version (English usually) by default!
   
-  $content = node_view($node, $teaser_only, TRUE);
+  $content = node_view($node, $teaser_only, $display_title);
   $editlink = custompage_edit_link('node/' . $node->nid . '/edit/');  
   $tile = custompage_tile_wrap ( $content, $editlink );
   
