Changeset 7011
- Timestamp:
- 01/11/08 08:30:09 (8 months ago)
- Files:
-
- branches/1.1/lib/util/sfCallable.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.1/lib/util/sfCallable.class.php
r6807 r7011 55 55 if (!is_callable($this->callable)) 56 56 { 57 throw new sfException(sprintf('"%s" is not a valid callable.', is_array($this->callable) ? sprintf('%s:%s', is_object($this->callable[0]) ? get_class($this->callable[0]) : $this->callable[0], $this->callable[1]) : $this->callable));57 throw new sfException(sprintf('"%s" is not a valid callable.', is_array($this->callable) ? sprintf('%s:%s', is_object($this->callable[0]) ? get_class($this->callable[0]) : $this->callable[0], $this->callable[1]) : var_export($this->callable, true))); 58 58 } 59 59