Changeset 605
- Timestamp:
- 07/17/06 18:56:00 (2 years ago)
- Files:
-
- branches/mt3.32/extlib/HTML/Template.pm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/mt3.32/extlib/HTML/Template.pm
r2 r605 898 898 use Carp; # generate better errors with more context 899 899 use File::Spec; # generate paths that work on all platforms 900 use Digest::MD5 qw(md5_hex); # generate cache keys 900 ## Removing 'use' to allow module to work with basic 5.6.x install 901 ## use Digest::MD5 qw(md5_hex); # generate cache keys 901 902 902 903 # define accessor constants used to improve readability of array … … 1320 1321 1321 1322 # compute the md5 and return it 1322 return md5_hex(@key); 1323 require Digest::MD5; 1324 return Digest::MD5::md5_hex(@key); 1323 1325 } 1324 1326
