[ticket/12273] Fix missing space in some Exceptions

PHPBB3-12273
This commit is contained in:
Joas Schilling 2014-04-20 15:11:23 +02:00
parent 08cce5fba5
commit bc1ab3dc79

View file

@ -218,8 +218,9 @@ class php_exporter
if (isset($this->events[$this->current_event])) if (isset($this->events[$this->current_event]))
{ {
throw new \LogicException('The event "' . $this->current_event . '" from file "' . $this->current_file throw new \LogicException("The event '{$this->current_event}' from file "
. '" already exists in file "'. $this->events[$this->current_event]['file'] . '"', 10); . "'{$this->current_file}:{$event_line_num}' already exists in file "
. "'{$this->events[$this->current_event]['file']}'", 10);
} }
$this->events[$this->current_event] = array( $this->events[$this->current_event] = array(