aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-03-08 16:06:58 -0800
committerredmatrix <git@macgirvin.com>2016-03-08 16:06:58 -0800
commit1258f9bb2114bd4a909f623a7519ba446bf8da0d (patch)
treecdcc0f2e1c9d30de528f0f952eca3971da211163 /boot.php
parent5f41d06bb977bf7811ef5d8a1a1faf0b8670936a (diff)
downloadvolse-hubzilla-1258f9bb2114bd4a909f623a7519ba446bf8da0d.tar.gz
volse-hubzilla-1258f9bb2114bd4a909f623a7519ba446bf8da0d.tar.bz2
volse-hubzilla-1258f9bb2114bd4a909f623a7519ba446bf8da0d.zip
turn 'OpenGraph' into a more general purpose HTTP meta facility for setting any meta header
Diffstat (limited to 'boot.php')
-rwxr-xr-xboot.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/boot.php b/boot.php
index 46f716365..c89ffc9ad 100755
--- a/boot.php
+++ b/boot.php
@@ -753,7 +753,7 @@ class App {
private $baseurl;
- private $OG;
+ private $meta;
/**
* App constructor.
@@ -873,7 +873,7 @@ class App {
spl_autoload_register('ZotlabsAutoloader::loader');
- $this->OG = new Zotlabs\Web\OpenGraph();
+ $this->meta= new Zotlabs\Web\HttpMeta();
}
function get_baseurl($ssl = false) {
@@ -1023,8 +1023,8 @@ class App {
if(! x($this->page,'title'))
$this->page['title'] = $this->config['system']['sitename'];
- if(! $this->OG->get_field('og:title'))
- $this->OG->set('og:title',$this->page['title']);
+ if(! $this->meta->get_field('og:title'))
+ $this->meta->set('og:title',$this->page['title']);
/* put the head template at the beginning of page['htmlhead']
* since the code added by the modules frequently depends on it
@@ -1037,7 +1037,7 @@ class App {
'$baseurl' => $this->get_baseurl(),
'$local_channel' => local_channel(),
'$generator' => Zotlabs\Project\System::get_platform_name() . ((Zotlabs\Project\System::get_project_version()) ? ' ' . Zotlabs\Project\System::get_project_version() : ''),
- '$metas' => $this->OG->get(),
+ '$metas' => $this->meta->get(),
'$update_interval' => $interval,
'$icon' => head_get_icon(),
'$head_css' => head_get_css(),