Fix doxygen

This commit is contained in:
Laurent Destailleur 2017-11-03 11:44:31 +01:00
parent 4381c35835
commit ce3e586bd0

View File

@ -598,9 +598,9 @@ function pdf_pagehead(&$pdf,$outputlangs,$page_height)
* @param int $onlykey 1=Do not calculate some heavy values of keys (performance enhancement when we need only the keys), 2=Values are truncated and html sanitized (to use for help tooltip) * @param int $onlykey 1=Do not calculate some heavy values of keys (performance enhancement when we need only the keys), 2=Values are truncated and html sanitized (to use for help tooltip)
* @return array Array of substitutions * @return array Array of substitutions
*/ */
function pdf_getSubstitutionArray($outputlangs, $exclude=null, $object=null, $onlykeys=0) function pdf_getSubstitutionArray($outputlangs, $exclude=null, $object=null, $onlykey=0)
{ {
$substitutionarray = getCommonSubstitutionArray($outputlangs, $onlykeys, $exclude, $object); $substitutionarray = getCommonSubstitutionArray($outputlangs, $onlykey, $exclude, $object);
$substitutionarray['__FROM_NAME__']='__FROM_NAME__'; $substitutionarray['__FROM_NAME__']='__FROM_NAME__';
$substitutionarray['__FROM_EMAIL__']='__FROM_EMAIL__'; $substitutionarray['__FROM_EMAIL__']='__FROM_EMAIL__';
return $substitutionarray; return $substitutionarray;