--- loncom/interface/lonrss.pm 2013/05/06 16:15:59 1.51
+++ loncom/interface/lonrss.pm 2019/08/14 16:06:42 1.53.2.4
@@ -1,7 +1,7 @@
# The LearningOnline Network
# RSS Feeder
#
-# $Id: lonrss.pm,v 1.51 2013/05/06 16:15:59 raeburn Exp $
+# $Id: lonrss.pm,v 1.53.2.4 2019/08/14 16:06:42 raeburn Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -128,8 +128,8 @@ sub advertisefeeds {
}
if ($feeds) {
return '
'.&mt('Available RSS Feeds and Blogs').'
';
- } else {
- return '';
+ } elsif (!$edit) {
+ return ''.&mt('No available RSS Feeds and Blogs').'
';
}
}
@@ -345,8 +345,10 @@ sub handler {
# my $title = $displayfeedname?$displayfeedname:"Available RSS Feeds and Blogs";
my $title = "My Space";
my $rss_link = &Apache::lonrss::rss_link($uname,$udom);
+ my $head_extra = $rss_link.'';
my $brcrumb = [{href=>$rss_link,text=>"Available RSS Feeds and Blogs"}];
- $r->print(&Apache::loncommon::start_page($title,$rss_link,
+ $r->print(&Apache::loncommon::start_page($title,$head_extra,
{'bread_crumbs' => $brcrumb,
'domain' => $udom,
'force_register' => $env{'form.register'}}).
@@ -411,7 +413,7 @@ sub handler {
# Add a new feed
if (($html) && ($edit)) {
$r->print('' . &mt('New RSS Feed or Blog'). '
');
- $r->print('');
@@ -513,7 +515,7 @@ sub handler {
($html?'
':'').
&mt('LON-CAPA Feed "[_1]" for [_2]',$displayfeedname,$name).
($displayoption eq 'hidden'?' ('.&mt('Hidden').')':'').
- ($html?'
'.($edit?'');
}
} # was a real display feedname
- $r->print(($html?''.&Apache::loncommon::end_page():''."\n"));
+ $r->print(($html?&Apache::loncommon::end_page():''."\n"));
} # a real user
return OK;
} # end handler