[LON-CAPA-cvs] cvs: loncom /interface lonaboutme.pm lontemplate.pm
bisitz
bisitz@source.lon-capa.org
Sat, 30 May 2009 20:41:34 -0000
bisitz Sat May 30 20:41:34 2009 EDT
Modified files:
/loncom/interface lonaboutme.pm lontemplate.pm
Log:
Removed unused/unnecessary sub routines "start_ContentBox" and "end_ContentBox"
(which used a non existing style anyway)
Index: loncom/interface/lonaboutme.pm
diff -u loncom/interface/lonaboutme.pm:1.134 loncom/interface/lonaboutme.pm:1.135
--- loncom/interface/lonaboutme.pm:1.134 Tue May 19 10:03:37 2009
+++ loncom/interface/lonaboutme.pm Sat May 30 20:41:34 2009
@@ -1,7 +1,7 @@
# The LearningOnline Network
# Personal Information Page
#
-# $Id: lonaboutme.pm,v 1.134 2009/05/19 10:03:37 amueller Exp $
+# $Id: lonaboutme.pm,v 1.135 2009/05/30 20:41:34 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -362,8 +362,6 @@
}
if ($target ne 'tex') { #print Image
- &Apache::lontemplate::start_ContentBox($r);
- &Apache::lontemplate::end_ContentBox($r);
$r->print($image);
} #End Print Image
Index: loncom/interface/lontemplate.pm
diff -u loncom/interface/lontemplate.pm:1.33 loncom/interface/lontemplate.pm:1.34
--- loncom/interface/lontemplate.pm:1.33 Mon May 11 13:34:10 2009
+++ loncom/interface/lontemplate.pm Sat May 30 20:41:34 2009
@@ -1,7 +1,7 @@
# The LearningOnline Network
# "Template" Functions to generate html output
#
-# $Id: lontemplate.pm,v 1.33 2009/05/11 13:34:10 bisitz Exp $
+# $Id: lontemplate.pm,v 1.34 2009/05/30 20:41:34 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -96,17 +96,6 @@
}
-sub start_ContentBox {
- my ($r,$allowed) = @_;
- $r->print('<div class="LC_ContentBox">');
-
-}
-
-sub end_ContentBox {
- my ($r) = @_;
- $r->print('</div>');
-}
-
sub send_message {
my ($r,$cnum,$cdom) = @_;
my $s;