73a74,96
> }
> 
> /**
> * Implementation of hook_block().
> */
> function tracker_block($op = 'list', $delta = 0, $edit = array()) {
>   global $user;
>   
>   if ($op == 'list') {
>     $block[0]['info'] = t('Recent updates');
>     return $block;
>   }
>   else if ($op == 'view') {
>     if (user_access('access content')) {
>       $result = db_query_range(db_rewrite_sql("SELECT DISTINCT nid, title, changed FROM {node} n WHERE status = 1 ORDER BY changed desc"), 0, 10);
>       if ($node_title_list = node_title_list($result)) {
>         $block['content'] = $node_title_list;
>         $block['content'] .= theme('more_link', url('node'), t('Recent updates.'));
>         $block['subject'] = t('Recent updates');
>         return $block;
>       }
>     }
>   }
