/[drupal]/contributions/modules/atom/atom.module
ViewVC logotype

Diff of /contributions/modules/atom/atom.module

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.13.2.6 by deekayen, Thu Mar 1 03:49:19 2007 UTC revision 1.13.2.7 by deekayen, Wed Dec 5 15:00:00 2007 UTC
# Line 1  Line 1 
1  <?php  <?php
2  // $Id: atom.module,v 1.13.2.5 2006/01/13 04:02:23 deekayen Exp $  // $Id: atom.module,v 1.13.2.6 2007/03/01 03:49:19 deekayen Exp $
3    
4  /**  /**
5   * Implementation of hook_help   * Implementation of hook_help
# Line 135  function _atom_print_feed($nodes, $feed_ Line 135  function _atom_print_feed($nodes, $feed_
135    $last_mod = 0;    $last_mod = 0;
136    while ($node = db_fetch_object($nodes)) {    while ($node = db_fetch_object($nodes)) {
137      $item = node_load(array('nid' => $node->nid));      $item = node_load(array('nid' => $node->nid));
138        if (!node_access('view', $item)) {
139          continue;
140        }
141    
142      $link = url("node/$node->nid", NULL, NULL, true);      $link = url("node/$node->nid", NULL, NULL, true);
143    
144      if (node_hook($item, 'view')) {      if (node_hook($item, 'view')) {
# Line 233  function atom_settings() { Line 237  function atom_settings() {
237    
238    return $output;    return $output;
239  }  }
   
 ?>  

Legend:
Removed from v.1.13.2.6  
changed lines
  Added in v.1.13.2.7

  ViewVC Help
Powered by ViewVC 1.1.3