This commit was manufactured by cvs2svn to create branch
[freeside.git] / FS / FS / CGI.pm
index 905189e..25f0de7 100644 (file)
@@ -44,10 +44,8 @@ Returns an HTML header.
 =cut
 
 sub header {
-  use Carp;
-  carp 'FS::CGI::header deprecated; include /elements/header.html instead';
-
   my($title,$menubar,$etc)=@_; #$etc is for things like onLoad= etc.
+  #use Carp;
   $etc = '' unless defined $etc;
 
   my $x =  <<END;
@@ -61,7 +59,7 @@ sub header {
         <META HTTP-Equiv="Expires" Content="0"> 
       </HEAD>
       <BODY BGCOLOR="#e8e8e8"$etc>
-          <FONT SIZE=7>
+          <FONT SIZE=6>
             $title
           </FONT>
           <BR><BR>
@@ -109,9 +107,6 @@ Returns an HTML menubar.
 =cut
 
 sub menubar { #$menubar=menubar('Main Menu', '../', 'Item', 'url', ... );
-  use Carp;
-  carp 'FS::CGI::menubar deprecated; include /elements/menubar.html instead';
-
   my($item,$url,@html);
   while (@_) {
     ($item,$url)=splice(@_,0,2);
@@ -232,9 +227,6 @@ Returns HTML tag for beginning a table.
 =cut
 
 sub table {
-  use Carp;
-  carp 'FS::CGI::table deprecated; include /elements/table.html instead';
-
   my $col = shift;
   if ( $col ) {
     qq!<TABLE BGCOLOR="$col" BORDER=1 WIDTH="100%" CELLSPACING=0 CELLPADDING=2 BORDERCOLOR="#999999">!;