Bug #1006 ANCGL : export des pièces dans un grand PDF avec un tampon

Task #1006 - ANCGL : export des pièces dans un grand PDF avec un tampon
This commit is contained in:
Dany De Bontridder 2014-06-27 20:58:30 +02:00
parent e4ef9aa769
commit 7d45e42039
9 changed files with 309 additions and 222 deletions

View file

@ -43,7 +43,14 @@ if ( $action=='X' || ! isset($_GET['act']) || $g_user->check_print($_GET['act'])
exit();
}
// get file and execute it
$prfile=$cn->get_value("select me_file from menu_ref where me_code=$1",array($_GET['act']));
$action=HtmlInput::default_value_get('act', null);
if ($action == null )
{
die(_('Appel invalide'));
}
$prfile=$cn->get_value("select me_file from menu_ref where me_code=$1",array($action));
if ( $prfile == "") {
die (_('Export impossible'));
}
require_once $prfile;
?>