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