aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
Diffstat (limited to 'boot.php')
-rwxr-xr-xboot.php13
1 files changed, 10 insertions, 3 deletions
diff --git a/boot.php b/boot.php
index d80d5fd07..8ab4556d2 100755
--- a/boot.php
+++ b/boot.php
@@ -83,7 +83,7 @@ $DIRECTORY_FALLBACK_SERVERS = array(
'https://zothub.com',
'https://hubzilla.site',
'https://red.zottel.red',
- 'https://gravizot.de',
+ 'https://hub.pixelbits.de',
'https://my.federated.social',
'https://hubzilla.nl'
);
@@ -704,11 +704,18 @@ class App {
'smarty3' => '}}'
);
+ // These represent the URL which was used to access the page
+
private $scheme;
private $hostname;
- private $baseurl;
private $path;
+ // This is our standardised URL - regardless of what was used
+ // to access the page
+
+ private $baseurl;
+
+
/**
* App constructor.
*/
@@ -1324,7 +1331,7 @@ function check_config(&$a) {
*
*/
- $r = q("SELECT * FROM `addon` WHERE `installed` = 1");
+ $r = q("SELECT * FROM addon WHERE installed = 1");
if($r)
$installed = $r;
else