9 lines
166 B
PHP
9 lines
166 B
PHP
<?php
|
|
/**
|
|
* getCorporateData.php - Wrapper für getAuthorityData.php mit authType=Corporate
|
|
*/
|
|
|
|
$_GET['authType'] = 'Corporate';
|
|
include 'getAuthorityData.php';
|
|
?>
|