--- loncom/publisher/lonpublisher.pm 2008/02/14 21:29:08 1.231
+++ loncom/publisher/lonpublisher.pm 2008/03/18 23:31:31 1.232
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Publication Handler
#
-# $Id: lonpublisher.pm,v 1.231 2008/02/14 21:29:08 www Exp $
+# $Id: lonpublisher.pm,v 1.232 2008/03/18 23:31:31 raeburn Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -964,14 +964,13 @@ sub publish {
$scrout.='
'.&mt('Dependencies').'
';
my $allowstr='';
- foreach (sort(keys(%allow))) {
- my $thisdep=$_;
+ foreach my $thisdep (sort(keys(%allow))) {
if ($thisdep !~ /[^\s]/) { next; }
if ($thisdep =~/\$/) {
- $scrout.='
'.
- &mt('The resource depends on another resource with variable filename, i.e., [_1]. '.
- 'You likely need to explicitly allow access to all possible dependencies using the [_2]-tag',
- ''.$thisdep.'','<allow>').'';
+ $scrout.='
'
+ .&mt('The resource depends on another resource with variable filename, i.e., [_1].',''.$thisdep.'').'
'
+ .&mt('You likely need to explicitly allow access to all possible dependencies using the [_1]-tag.','<allow>')
+ .'
';
}
unless ($style eq 'rat') {
$allowstr.="\n".'';