mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-02 23:07:39 +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]))
|
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(
|
||||||
|
Reference in New Issue
Block a user