Remove title link in view of ideas and new title field
This commit is contained in:
parent
c78267142a
commit
669b6891c4
2 changed files with 3 additions and 3 deletions
|
@ -9,7 +9,7 @@ function theme_stormidea_list($header, $ideas) {
|
|||
|
||||
foreach ($ideas as $idea) {
|
||||
$rows[] = array(
|
||||
'<span class="idea-title">' . l($idea->title, 'node/'. $idea->nid) . theme('mark', node_mark($idea->nid, $idea->changed)) . '</span>',
|
||||
'<span class="idea-title">' . $idea->title . theme('mark', node_mark($idea->nid, $idea->changed)) . '</span>',
|
||||
format_date($idea->changed, 'small'),
|
||||
array(
|
||||
'data' => storm_icon_edit_node($idea, $_GET) . storm_icon_delete_node($idea, $_GET),
|
||||
|
@ -40,7 +40,7 @@ function theme_stormidea_view($node, $teaser = FALSE, $page = FALSE) {
|
|||
$node->content['group1']['created'] = array(
|
||||
'#prefix' => '<div class="created">',
|
||||
'#suffix' => '</div>',
|
||||
'#value' => theme('storm_view_item', t('Note created'), format_date($node->created, 'small')),
|
||||
'#value' => theme('storm_view_item', t('Idea recorded'), format_date($node->created, 'small')),
|
||||
'#weight' => 12,
|
||||
);
|
||||
if ($node->changed != $node->created) {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
name = SuiteDesk Theme
|
||||
description = SuiteDesk Theme Zen.
|
||||
version = 0.2.24
|
||||
version = 0.2.25
|
||||
|
||||
screenshot = screenshot.png
|
||||
|
||||
|
|
Reference in a new issue