--- loncom/interface/domainprefs.pm 2013/07/09 00:17:22 1.198
+++ loncom/interface/domainprefs.pm 2013/07/15 17:42:11 1.199
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Handler to set domain-wide configuration settings
#
-# $Id: domainprefs.pm,v 1.198 2013/07/09 00:17:22 raeburn Exp $
+# $Id: domainprefs.pm,v 1.199 2013/07/15 17:42:11 raeburn Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -3920,8 +3920,8 @@ sub print_scantronformat {
$datatable .= '
'.&mt('Default in use:').' '.
'';
if ($scantronurl) {
- $datatable .= ''.
- &mt('Default bubblesheet format file').'';
+ $datatable .= &Apache::loncommon::modal_link($scantronurl,&mt('Default bubblesheet format file'),600,500,
+ undef,undef,undef,undef,'background-color:#ffffff');
} else {
$datatable = &mt('File unavailable for display');
}
@@ -3946,11 +3946,12 @@ sub print_scantronformat {
}
$datatable .= ' | '.$errorstr.' | ';
} elsif ($scantronurl) {
+ my $link = &Apache::loncommon::modal_link($scantronurl,&mt('Custom bubblesheet format file'),600,500,
+ undef,undef,undef,undef,'background-color:#ffffff');
$datatable .= ' | '.
- ''.
- &mt('Custom bubblesheet format file').' | '.
+ $link.
+ ''.
' '.
&mt('Replace:').' ';
}
|