mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2024-11-22 02:17:26 +00:00
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
Block a user