From f3cd4b3ee8adf8adb2d6ab859d56d302289010c6 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Wed, 18 May 2016 14:43:56 +0200 Subject: [PATCH] Fix doxygen --- htdocs/core/modules/commande/doc/pdf_proforma.modules.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/htdocs/core/modules/commande/doc/pdf_proforma.modules.php b/htdocs/core/modules/commande/doc/pdf_proforma.modules.php index 5c77b9b7b32..918b338aa12 100644 --- a/htdocs/core/modules/commande/doc/pdf_proforma.modules.php +++ b/htdocs/core/modules/commande/doc/pdf_proforma.modules.php @@ -64,13 +64,14 @@ class pdf_proforma extends pdf_einstein * @param Object $object Object to show * @param int $showaddress 0=no, 1=yes * @param Translate $outputlangs Object lang for output + * @param string $titlekey Translation key to show as title of document * @return void */ function _pagehead(&$pdf, $object, $showaddress, $outputlangs, $titlekey="InvoiceProForma") { global $conf,$langs,$hookmanager; - parent::_pagehead($pdf, $object, $showaddress, $outputlangs, "InvoiceProForma"); + parent::_pagehead($pdf, $object, $showaddress, $outputlangs, $titlekey); } }