19 lines
392 B
PHP
19 lines
392 B
PHP
<?php
|
|
//@description:de Detail ODS
|
|
$_GET=array (
|
|
'op'=>"ledger",
|
|
'act' => 'de',
|
|
'jr_id' => '316',
|
|
'div' => 'det2',
|
|
);
|
|
$_POST=array (
|
|
);
|
|
$_POST['gDossier']=$gDossierLogInput;
|
|
$_GET['gDossier']=$gDossierLogInput;
|
|
$_REQUEST=array_merge($_GET,$_POST);
|
|
ob_start();
|
|
include 'ajax_misc.php';
|
|
$output=ob_get_contents();
|
|
ob_clean();
|
|
echo unescape_xml($output);
|
|
echo htmlentities($output);
|