We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a919cd commit bc0d10cCopy full SHA for bc0d10c
src/BackendController.php
@@ -27,11 +27,10 @@ public function __construct(array $content = [])
27
{
28
// Set view global content
29
$id = (int)$this->getSession('userId');
30
- $content = $this->mergeArray([
+ $this->setContent($this->mergeArray([
31
'user' => (new User)->get($id),
32
'execution' => Debugger::getExecutionTime()
33
- ], $content);
34
- $this->setContent($content);
+ ], $content));
35
36
// Allow non-blocking requests
37
$this->closeSession();
0 commit comments