diff --git a/src/App.php b/src/App.php index 8927e28..d6d9848 100644 --- a/src/App.php +++ b/src/App.php @@ -178,6 +178,8 @@ public function handler(&$request = null, &$response = null) if ($this->config->get('server') === 'php') { ob_start(); } + // Set default headers + $this->context['response']->header('X-Powered-By', 'Unic Framework'); $this->dispatch($this->context['request'], $this->context['response']); if (ob_get_level()) { ob_end_flush();