Diff for /loncom/interface/loncommon.pm between versions 1.1051 and 1.1052

version 1.1051, 2012/01/04 00:42:19 version 1.1052, 2012/01/09 19:56:28
Line 7097  ENDMODAL Line 7097  ENDMODAL
 }  }
   
 sub modal_link {  sub modal_link {
     my ($link,$linktext,$width,$height,$target,$scrolling)=@_;      my ($link,$linktext,$width,$height,$target,$scrolling,$title)=@_;
     unless ($width) { $width=480; }      unless ($width) { $width=480; }
     unless ($height) { $height=400; }      unless ($height) { $height=400; }
     unless ($scrolling) { $scrolling='yes'; }      unless ($scrolling) { $scrolling='yes'; }
     return '<a href="'.$link.'" target="'.$target.'" onclick="openMyModal(\''.$link.'\','.$width.','.$height.',\''.$scrolling.'\'); return false;">'.      return '<a href="'.$link.'" target="'.$target.'" title="'.$title.'" onclick="openMyModal(\''.$link.'\','.$width.','.$height.',\''.$scrolling.'\'); return false;">'.
            $linktext.'</a>';             $linktext.'</a>';
 }  }
   

Removed from v.1.1051  
changed lines
  Added in v.1.1052


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>