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