From: Nik Okuntseff Date: Sun, 31 Mar 2019 14:53:11 +0000 (+0000) Subject: Added project name to project_files.php page title. X-Git-Tag: timetracker_1.19-1~134 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=bbdb5228ab00dfeb9d91217ce0e990842ab6da80;p=timetracker.git Added project name to project_files.php page title. --- diff --git a/WEB-INF/templates/footer.tpl b/WEB-INF/templates/footer.tpl index 3bec2a8d..9196e067 100644 --- a/WEB-INF/templates/footer.tpl +++ b/WEB-INF/templates/footer.tpl @@ -12,7 +12,7 @@
-
 Anuko Time Tracker 1.18.62.4902 | Copyright © Anuko | +  Anuko Time Tracker 1.18.62.4903 | Copyright © Anuko | {$i18n.footer.credits} | {$i18n.footer.license} | {$i18n.footer.improve} diff --git a/project_files.php b/project_files.php index 860ba074..d8ef9884 100644 --- a/project_files.php +++ b/project_files.php @@ -86,5 +86,11 @@ $smarty->assign('can_manage', $user->can('manage_projects')); $smarty->assign('forms', array($form->getName()=>$form->toArray())); $smarty->assign('files', $files); $smarty->assign('title', $i18n->get('title.project_files')); + + +$smarty->assign('title', $i18n->get('title.project_files').': '.$project['name']); + + + $smarty->assign('content_page_name', 'project_files.tpl'); $smarty->display('index.tpl');