Development

Changeset 7215

You must first sign up to be able to contribute.

Changeset 7215

Show
Ignore:
Timestamp:
01/29/08 18:12:45 (9 months ago)
Author:
pookey
Message:

more updates in line with r7211

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.1/lib/action/sfComponent.class.php

    r7120 r7215  
    351351    if (!$event->isProcessed()) 
    352352    { 
    353       throw new sfException(sprintf('Call to undefined method sfComponent::%s.', $method)); 
     353      throw new sfException(sprintf('Call to undefined method %s::%s.', get_class($this), $method)); 
    354354    } 
    355355 
  • branches/1.1/lib/controller/sfController.class.php

    r6975 r7215  
    520520    if (!$event->isProcessed()) 
    521521    { 
    522       throw new sfException(sprintf('Call to undefined method sfController::%s.', $method)); 
     522      throw new sfException(sprintf('Call to undefined method %s::%s.', get_class($this), $method)); 
    523523    } 
    524524 
  • branches/1.1/lib/request/sfRequest.class.php

    r6748 r7215  
    420420    if (!$event->isProcessed()) 
    421421    { 
    422       throw new sfException(sprintf('Call to undefined method sfRequest::%s.', $method)); 
     422      throw new sfException(sprintf('Call to undefined method %s::%s.', get_class($this), $method)); 
    423423    } 
    424424 
  • branches/1.1/lib/response/sfResponse.class.php

    r6662 r7215  
    158158    if (!$event->isProcessed()) 
    159159    { 
    160       throw new sfException(sprintf('Call to undefined method sfResponse::%s.', $method)); 
     160      throw new sfException(sprintf('Call to undefined method %s::%s.', get_class($this), $method)); 
    161161    } 
    162162 
  • branches/1.1/lib/view/sfView.class.php

    r7120 r7215  
    501501    if (!$event->isProcessed()) 
    502502    { 
    503       throw new sfException(sprintf('Call to undefined method sfView::%s.', $method)); 
     503      throw new sfException(sprintf('Call to undefined method %s::%s.', get_class($this), $method)); 
    504504    } 
    505505