fix undefined index error in webfinger
This commit is contained in:
parent
3f5f95a633
commit
da17466526
|
@ -1,5 +1,9 @@
|
||||||
<?php
|
<?php
|
||||||
$resource = $_GET['resource'];
|
$resource = '';
|
||||||
|
|
||||||
|
if(isset($_GET['resource'])){
|
||||||
|
$resource = $_GET['resource'];
|
||||||
|
}
|
||||||
|
|
||||||
// Parse our configuration file to get the STORAGE_ROOT.
|
// Parse our configuration file to get the STORAGE_ROOT.
|
||||||
$STORAGE_ROOT = NULL;
|
$STORAGE_ROOT = NULL;
|
||||||
|
|
Loading…
Reference in New Issue