|
@@ 704-705 (lines=2) @@
|
| 701 |
|
else |
| 702 |
|
$infos['date'] = ((isset($infos['field']['date']))?"date":''); |
| 703 |
|
} |
| 704 |
|
if (!isset($infos['statut'])) |
| 705 |
|
$infos['statut'] = isset($GLOBALS['table_statut'][$table_sql]) ? $GLOBALS['table_statut'][$table_sql] : ''; |
| 706 |
|
if (!isset($infos['tables_jointures'])) |
| 707 |
|
$infos['tables_jointures'] = array(); |
| 708 |
|
if (isset($GLOBALS['tables_jointures'][$table_sql])) |
|
@@ 708-709 (lines=2) @@
|
| 705 |
|
$infos['statut'] = isset($GLOBALS['table_statut'][$table_sql]) ? $GLOBALS['table_statut'][$table_sql] : ''; |
| 706 |
|
if (!isset($infos['tables_jointures'])) |
| 707 |
|
$infos['tables_jointures'] = array(); |
| 708 |
|
if (isset($GLOBALS['tables_jointures'][$table_sql])) |
| 709 |
|
$infos['tables_jointures'] = array_merge($infos['tables_jointures'],$GLOBALS['tables_jointures'][$table_sql]); |
| 710 |
|
return $infos; |
| 711 |
|
} |
| 712 |
|
|