1
0
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:
jkaberg 2014-08-19 11:37:20 +02:00
parent 3f5f95a633
commit da17466526

View File

@ -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;