mirror of
https://github.com/claudehohl/Stikked.git
synced 2025-04-26 04:51:08 -05:00
Merge pull request #270 from PJanisio/fixes
Burn on read cron delete fix + Stikkedizr theme fix
This commit is contained in:
commit
bffe7c3973
@ -698,7 +698,7 @@ class Pastes extends CI_Model
|
||||
{
|
||||
$stamp = $row['expire'];
|
||||
|
||||
if ($now > $stamp)
|
||||
if ($now > $stamp AND $stamp != 0)
|
||||
{
|
||||
$this->delete_paste($row['pid']);
|
||||
}
|
||||
|
@ -10,6 +10,7 @@ $page_title .= $this->config->item('site_name');
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title><?php echo $page_title; ?></title>
|
||||
<?php
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user