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