diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-12-13 15:35:45 -0800 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-12-13 15:35:45 -0800 |
commit | bb0e4044bf08bbac9d73a3e3b75d74c33dcacd7f (patch) | |
tree | 1c6292b26b08bb86ef36cc258cd617197f5844a8 /boot.php | |
parent | 395268da22bf5ec773de7fdc42a338a9cbe87d40 (diff) | |
download | volse-hubzilla-bb0e4044bf08bbac9d73a3e3b75d74c33dcacd7f.tar.gz volse-hubzilla-bb0e4044bf08bbac9d73a3e3b75d74c33dcacd7f.tar.bz2 volse-hubzilla-bb0e4044bf08bbac9d73a3e3b75d74c33dcacd7f.zip |
remove the unqualified "OAuth" namespace from the project. We need to reference either OAuth1 or OAuth2.
Diffstat (limited to 'boot.php')
-rwxr-xr-x | boot.php | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -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. */ |