Changeset 25681

Show
Ignore:
Timestamp:
12/02/08 16:38:24 (5 weeks ago)
Author:
charsbar
Message:

Path-Extended: let's behave

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/Path-Extended/trunk/lib/Path/Extended/Entity.pm

    r21995 r25681  
    6464  my ($self, %options) = @_; 
    6565 
    66   my $path = File::Spec->canonpath( $self->{path} ); 
     66  my $path = File::Spec->canonpath( $self->_path ); 
    6767     $path = $self->_unixify($path) unless $options{native}; 
    6868 
     
    7373  my ($self, %options) = @_; 
    7474 
    75   my $path = File::Spec->abs2rel( $self->{path}, $options{base} ); 
     75  my $path = File::Spec->abs2rel( $self->_path, $options{base} ); 
    7676     $path = $self->_unixify($path) unless $options{native}; 
    7777