mirror of
https://github.com/vichan-devel/vichan.git
synced 2025-02-18 19:54:13 +01:00
sitemap theme: fix php notice
This commit is contained in:
parent
e21d21e18f
commit
f4d3112617
@ -14,7 +14,7 @@
|
||||
if ($action != 'post-thread' && $action != 'post-delete')
|
||||
return;
|
||||
|
||||
if ($settings['regen_time'] > 0) {
|
||||
if (isset($settings['regen_time']) && $settings['regen_time'] > 0) {
|
||||
if ($last_gen = @filemtime($settings['path'])) {
|
||||
if (time() - $last_gen < (int)$settings['regen_time'])
|
||||
return; // Too soon
|
||||
|
Loading…
x
Reference in New Issue
Block a user