Ignore:
Timestamp:
07/15/10 17:30:07 (14 years ago)
Author:
viani
Message:

Ticket #950 - Merged 2838:3056 /trunk/workflow em /sandbox/workflow/trunk

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sandbox/workflow/trunk/inc/log/Log/observer.php

    r795 r3060  
    7979         */ 
    8080        if (class_exists($class)) { 
    81             $object = &new $class($priority, $conf); 
     81            $object = new $class($priority, $conf); 
    8282            return $object; 
    8383        } 
     
    103103            /* Support both new-style and old-style construction. */ 
    104104            if ($newstyle) { 
    105                 $object = &new $class($priority, $conf); 
     105                $object = new $class($priority, $conf); 
    106106            } else { 
    107                 $object = &new $class($priority); 
     107                $object = new $class($priority); 
    108108            } 
    109109            return $object; 
Note: See TracChangeset for help on using the changeset viewer.