mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-04 07:47:34 +02:00
[ticket/12273] Fix missing space in some Exceptions
PHPBB3-12273
This commit is contained in:
@@ -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(
|
||||
|
Reference in New Issue
Block a user