From c3089acf51d1f27ed899e980aba0c11bde982e3a Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Mon, 11 Jul 2011 18:04:18 +0000 Subject: [PATCH] added time to footer --- lam/lib/lamPDF.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lam/lib/lamPDF.inc b/lam/lib/lamPDF.inc index ecebbd0f..796c0346 100644 --- a/lam/lib/lamPDF.inc +++ b/lam/lib/lamPDF.inc @@ -4,6 +4,7 @@ $Id$ This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/) Copyright (C) 2003 - 2006 Michael Duergner + 2011 Roland Gruber This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -110,7 +111,7 @@ class lamPDF extends UFPDF { $this->Line(10,282,200,282); $this->SetY(286); $this->SetFont($this->fontName,"",7); - $this->Cell(0,5,_("This document was automatically created by LDAP Account Manager"),0,0,"C",0); + $this->Cell(0,5,_("This document was automatically created by LDAP Account Manager") . ' (' . date('Y-m-d H:i:s') . ')',0,0,"C",0); } }