mirror of
https://github.com/Neetpone/ponepaste.git
synced 2025-03-12 06:30:07 +01:00
17 lines
420 B
PHP
17 lines
420 B
PHP
<?php
|
|
define('IN_PONEPASTE', 1);
|
|
require_once('includes/common.php');
|
|
|
|
$date = date('jS F Y');
|
|
|
|
// Temp count for untagged pastes
|
|
$total_untagged = intval($conn->query("SELECT COUNT(*) from pastes WHERE tagsys IS NULL")->fetch(PDO::FETCH_NUM)[0]);
|
|
|
|
updatePageViews($conn);
|
|
|
|
|
|
$p_title = $lang['archive']; // "Pastes Archive";
|
|
|
|
// Theme
|
|
$page_template = 'archive';
|
|
require_once('theme/' . $default_theme . '/common.php');
|