mirror of
https://github.com/Neetpone/ponepaste.git
synced 2025-03-12 06:30:07 +01:00
10 lines
269 B
PHP
10 lines
269 B
PHP
|
<?php
|
||
|
/** @noinspection PhpDefineCanBeReplacedWithConstInspection */
|
||
|
define('IN_PONEPASTE', 1);
|
||
|
require_once(__DIR__ . '/../includes/common.php');
|
||
|
|
||
|
$page_template = 'event';
|
||
|
$page_title = 'Event';
|
||
|
|
||
|
require_once(__DIR__ . '/../theme/' . $default_theme . '/common.php');
|