Binary files drupal-5.1/modules/service_links/newscloud.png and service_links/newscloud.png differ diff -urNp drupal-5.1/modules/service_links/service_links.module service_links/service_links.module --- drupal-5.1/modules/service_links/service_links.module 2007-01-30 03:19:11.000000000 +0000 +++ service_links/service_links.module 2007-01-12 09:07:21.000000000 +0000 @@ -108,12 +108,6 @@ function service_links_admin_settings() '#return_value' => 1, '#default_value' => variable_get('service_links_show_yahoo', 0), ); - $form['what_links_to_show']['service_links_show_newscloud'] = array( - '#type' => 'checkbox', - '#title' => t('Show NewsCloud link'), - '#return_value' => 1, - '#default_value' => variable_get('service_links_show_newscloud', 0), - ); $form['what_links2_to_show'] = array( '#type' => 'fieldset', @@ -343,9 +337,6 @@ function service_links_render($node, $no if (variable_get('service_links_show_yahoo', 0)) { $links['service_links_yahoo'] = theme('service_links_build_link', t('Yahoo'), "http://myweb2.search.yahoo.com/myresults/bookmarklet?u=$url&t=$title", t('Bookmark this post on Yahoo.'), 'yahoo.png', $nodelink); } - if (variable_get('service_links_show_newscloud', 0)) { - $links['service_links_newscloud'] = theme('service_links_build_link', t('NewsCloud'), "http://www.newscloud.com/post/story/?qweburl=$url&qtitle=$title", t('Bookmark this post on NewsCloud.'), 'newscloud.png', $nodelink); - } if (variable_get('service_links_show_technorati', 0)) { $links['service_links_technorati'] = theme('service_links_build_link', t('Technorati'), "http://technorati.com/cosmos/search.html?url=$url", t('Search Technorati for links to this post.'), 'technorati.png', $nodelink); }