6 lines
163 B
PHP
6 lines
163 B
PHP
<?php
|
|
// Redirect to main settings with journal tab
|
|
require_once __DIR__ . '/../src/config.php';
|
|
header('Location: ' . url_for('settings.php?tab=journal'));
|
|
exit;
|