2021-07-10 19:18:17 +01:00
|
|
|
<?php
|
2021-07-10 17:36:15 -04:00
|
|
|
define('IN_PONEPASTE', 1);
|
|
|
|
require_once('includes/common.php');
|
2021-07-10 19:18:17 +01:00
|
|
|
|
2021-07-12 09:03:02 -04:00
|
|
|
$date = date('jS F Y');
|
2021-07-10 19:18:17 +01:00
|
|
|
|
2021-07-10 17:36:15 -04:00
|
|
|
// Temp count for untagged pastes
|
|
|
|
$total_untagged = intval($conn->query("SELECT COUNT(*) from pastes WHERE tagsys IS NULL")->fetch(PDO::FETCH_NUM)[0]);
|
2021-07-10 19:18:17 +01:00
|
|
|
|
2021-07-10 17:54:43 -04:00
|
|
|
updatePageViews($conn);
|
2021-07-10 17:36:15 -04:00
|
|
|
|
|
|
|
|
|
|
|
$p_title = $lang['archive']; // "Pastes Archive";
|
|
|
|
|
2021-07-10 19:18:17 +01:00
|
|
|
// Theme
|
2021-08-22 21:45:26 -04:00
|
|
|
$page_template = 'archive';
|
|
|
|
require_once('theme/' . $default_theme . '/common.php');
|