fixes #411, auth keys details on notification forms

This commit is contained in:
plegall
2016-01-29 11:47:30 +01:00
parent bc7316639f
commit 77888174cf
6 changed files with 48 additions and 0 deletions
+13
View File
@@ -205,6 +205,19 @@ $template->assign(
)
);
if ($conf['auth_key_duration'] > 0)
{
$template->assign(
'auth_key_duration',
time_since(
strtotime('now -'.$conf['auth_key_duration'].' second'),
'second',
null,
false
)
);
}
// +-----------------------------------------------------------------------+
// | form construction |
// +-----------------------------------------------------------------------+