mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/12273] Fix missing space in some Exceptions
PHPBB3-12273
This commit is contained in:
parent
08cce5fba5
commit
bc1ab3dc79
1 changed files with 7 additions and 6 deletions
|
@ -218,8 +218,9 @@ class php_exporter
|
|||
|
||||
if (isset($this->events[$this->current_event]))
|
||||
{
|
||||
throw new \LogicException('The event "' . $this->current_event . '" from file "' . $this->current_file
|
||||
. '" already exists in file "'. $this->events[$this->current_event]['file'] . '"', 10);
|
||||
throw new \LogicException("The event '{$this->current_event}' from file "
|
||||
. "'{$this->current_file}:{$event_line_num}' already exists in file "
|
||||
. "'{$this->events[$this->current_event]['file']}'", 10);
|
||||
}
|
||||
|
||||
$this->events[$this->current_event] = array(
|
||||
|
|
Loading…
Add table
Reference in a new issue