aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/default/includes.html
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2020-01-12 15:22:02 +0100
committerGitHub <noreply@github.com>2020-01-12 15:22:02 +0100
commit7d0db8b567f0366fba6daaba856eeadec6a635a2 (patch)
tree8ddc13bcaa6eb3f4c08d78aeed5c5549a1c13b4a /tpl/default/includes.html
parent74c1d020793d9a7cae5f563776d6fc2f4155d627 (diff)
parentd9bfceaddf05dba5dec33523ea27277d773c5e4f (diff)
downloadShaarli-7d0db8b567f0366fba6daaba856eeadec6a635a2.tar.gz
Shaarli-7d0db8b567f0366fba6daaba856eeadec6a635a2.tar.zst
Shaarli-7d0db8b567f0366fba6daaba856eeadec6a635a2.zip
Avoiding warning 'PHP Notice: Undefined index: updated' (#1392)
Avoiding warning 'PHP Notice: Undefined index: updated'
Diffstat (limited to 'tpl/default/includes.html')
-rw-r--r--tpl/default/includes.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/tpl/default/includes.html b/tpl/default/includes.html
index d3d3c86f..428b8ee2 100644
--- a/tpl/default/includes.html
+++ b/tpl/default/includes.html
@@ -27,7 +27,7 @@
27 {/if} 27 {/if}
28 {if="!$hide_timestamps || $is_logged_in"} 28 {if="!$hide_timestamps || $is_logged_in"}
29 <meta property="article:published_time" content="{$link.created->format(DateTime::ATOM)}" /> 29 <meta property="article:published_time" content="{$link.created->format(DateTime::ATOM)}" />
30 {if="$link.updated"} 30 {if="!empty($link.updated)"}
31 <meta property="article:modified_time" content="{$link.updated->format(DateTime::ATOM)}" /> 31 <meta property="article:modified_time" content="{$link.updated->format(DateTime::ATOM)}" />
32 {/if} 32 {/if}
33 {/if} 33 {/if}