Changeset 2480

Show
Ignore:
Timestamp:
05/19/08 20:00:42 (8 months ago)
Author:
david
Message:

Fixed #762: Static method AgaviBaseConfigHandler::replacePath() is used in object context in two config handlers

Location:
branches/0.11
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • branches/0.11/CHANGELOG

    r2470 r2480  
    11AGAVI CHANGELOG 
    22=============== 
     3 
     40.11.2 RC1 (June ??, 2008) 
     5-------------------------- 
     6 
     7FIX: Static method AgaviBaseConfigHandler::replacePath() is used in object context in two config handlers (David) (#762) 
     8 
    39 
    4100.11.1 (May 9, 2008) 
  • branches/0.11/src/config/AgaviAutoloadConfigHandler.class.php

    r2258 r2480  
    6666        $originalFile = $file; 
    6767        // if the filename is not absolute we assume its relative to the app dir 
    68         $file = $this->replacePath($file); 
     68        $file = self::replacePath($file); 
    6969 
    7070        $class = $entry->getAttribute('name'); 
  • branches/0.11/src/config/AgaviCompileConfigHandler.class.php

    r2258 r2480  
    6464 
    6565        $file = AgaviToolkit::expandDirectives($file); 
    66         $file = $this->replacePath($file); 
     66        $file = self::replacePath($file); 
    6767        $file = realpath($file); 
    6868