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

Diff of /contributions/modules/gdata/gdata.module

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

revision 1.21, Mon Sep 4 19:04:49 2006 UTC revision 1.22, Mon Sep 4 19:44:05 2006 UTC
# Line 348  function gdata_admin() { Line 348  function gdata_admin() {
348    return system_settings_form($form);    return system_settings_form($form);
349  }  }
350    
351  function gdata_blank_feed($path = '') {  function _gdata_blank_feed($path = '') {
352    global $user;    global $user;
353    drupal_set_header('Content-Type: application/xml');    drupal_set_header('Content-Type: application/xml');
354    $output =    $output =
# Line 376  function gdata_blank_feed($path = '') { Line 376  function gdata_blank_feed($path = '') {
376    print $output;    print $output;
377  }  }
378    
379  function gdata_blog_feed() {  function _gdata_blog_feed() {
380    if(strpos(arg(3), 'gdata') === 0 || strpos(arg(3), 'feed') === 0) {    if(strpos(arg(3), 'gdata') === 0 || strpos(arg(3), 'feed') === 0) {
381      die(drupal_not_found());      die(drupal_not_found());
382    }    }
# Line 390  function gdata_blog_feed() { Line 390  function gdata_blog_feed() {
390    _gdata_print_feed($nodes, $feed_info);    _gdata_print_feed($nodes, $feed_info);
391  }  }
392    
393  function gdata_user_blog_feed() {  function _gdata_user_blog_feed() {
394    if(strpos(arg(4), 'gdata') === 0 || strpos(arg(4), 'feed') === 0) {    if(strpos(arg(4), 'gdata') === 0 || strpos(arg(4), 'feed') === 0) {
395      die(drupal_not_found());      die(drupal_not_found());
396    }    }

Legend:
Removed from v.1.21  
changed lines
  Added in v.1.22

  ViewVC Help
Powered by ViewVC 1.1.2