home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / perl_ste.zip / auto / URI / URL / strict.al < prev   
Text File  |  1997-11-28  |  223b  |  13 lines

  1. # NOTE: Derived from ./blib/lib/URI/URL.pm.  Changes made here will be lost.
  2. package URI::URL;
  3.  
  4. sub strict
  5. {
  6.     return $Strict_URL unless @_;
  7.     my $old = $Strict_URL;
  8.     $Strict_URL = $_[0];
  9.     $old;
  10. }
  11.  
  12. 1;
  13.