--- loncom/interface/portfolio.pm 2006/06/20 03:02:33 1.106
+++ loncom/interface/portfolio.pm 2006/06/20 03:13:08 1.107
@@ -626,9 +626,13 @@ sub access_setting_table {
if ($end == 0) {
$pub_noend = 'checked="checked"';
}
- $pub_action = '
'.&mt('Delete').' '.&mt('Update').
+ $pub_action = ' |
+ '.
' | ';
$pub_startdate = &Apache::lonhtmlcommon::date_setter('portform',
@@ -637,11 +641,14 @@ sub access_setting_table {
$pub_enddate = &Apache::lonhtmlcommon::date_setter('portform',
'enddate_'.$num,$end,undef,undef,undef,1,undef,
undef,undef,1).
- ' '.&mt('No end date').'';
+ ' ';
} else {
- $pub_action = ''.
- &mt('Activate').
+ $pub_action = ''.
'';
$pub_startdate = &Apache::lonhtmlcommon::date_setter('portform',
'startdate_0',$now,undef,undef,undef,1,undef,
@@ -649,9 +656,9 @@ sub access_setting_table {
$pub_enddate = &Apache::lonhtmlcommon::date_setter('portform',
'enddate_0',$then,,undef,undef,undef,1,undef,
undef,undef,1).
- '  ';
+ '';
}
$r->print(''.$pub_action.' | '.&mt('Start: ').$pub_startdate.
|