mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2024-12-21 07:07:05 +00:00
fix undefined index error in webfinger
This commit is contained in:
parent
3f5f95a633
commit
da17466526
@ -1,5 +1,9 @@
|
||||
<?php
|
||||
$resource = $_GET['resource'];
|
||||
$resource = '';
|
||||
|
||||
if(isset($_GET['resource'])){
|
||||
$resource = $_GET['resource'];
|
||||
}
|
||||
|
||||
// Parse our configuration file to get the STORAGE_ROOT.
|
||||
$STORAGE_ROOT = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user