Changeset 7215
- Timestamp:
- 01/29/08 18:12:45 (9 months ago)
- Files:
-
- branches/1.1/lib/action/sfComponent.class.php (modified) (1 diff)
- branches/1.1/lib/controller/sfController.class.php (modified) (1 diff)
- branches/1.1/lib/request/sfRequest.class.php (modified) (1 diff)
- branches/1.1/lib/response/sfResponse.class.php (modified) (1 diff)
- branches/1.1/lib/view/sfView.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.1/lib/action/sfComponent.class.php
r7120 r7215 351 351 if (!$event->isProcessed()) 352 352 { 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)); 354 354 } 355 355 branches/1.1/lib/controller/sfController.class.php
r6975 r7215 520 520 if (!$event->isProcessed()) 521 521 { 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)); 523 523 } 524 524 branches/1.1/lib/request/sfRequest.class.php
r6748 r7215 420 420 if (!$event->isProcessed()) 421 421 { 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)); 423 423 } 424 424 branches/1.1/lib/response/sfResponse.class.php
r6662 r7215 158 158 if (!$event->isProcessed()) 159 159 { 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)); 161 161 } 162 162 branches/1.1/lib/view/sfView.class.php
r7120 r7215 501 501 if (!$event->isProcessed()) 502 502 { 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)); 504 504 } 505 505