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