mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-04 22:40:12 +01:00
Get site path (www-root) from environment variable. (Won't work on IIS...)
This commit is contained in:
parent
52a8fde86c
commit
e05c401f12
@ -18,8 +18,7 @@ class FDroid
|
||||
// Our text domain, for internationalisation
|
||||
private $textdom='wp-fdroid';
|
||||
|
||||
// TODO: Fix site path...
|
||||
private $site_path = "/home/hansemil/MyDocuments/f-droid";
|
||||
private $site_path;
|
||||
|
||||
// Constructor
|
||||
function FDroid() {
|
||||
@ -27,6 +26,7 @@ class FDroid
|
||||
add_shortcode('fdroidrepo',array($this, 'do_shortcode'));
|
||||
add_filter('query_vars',array($this, 'queryvars'));
|
||||
$this->inited=false;
|
||||
$this->site_path=getenv('DOCUMENT_ROOT');
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user