aboutsummaryrefslogtreecommitdiffstats
path: root/include/channel.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2021-05-14 08:56:07 +0000
committerMario <mario@mariovavti.com>2021-05-14 08:56:07 +0000
commit635a24dff477548bdcf601874cb1ff2509aef3cc (patch)
treebc14a1800d978e0f924b0c25ef7f7a3b69887ba5 /include/channel.php
parentded9f18b8a36cae8dfe1797b7ba87d7742c996df (diff)
parenta03423794a1a9dc15588d40684fee3bf9a57b629 (diff)
downloadvolse-hubzilla-635a24dff477548bdcf601874cb1ff2509aef3cc.tar.gz
volse-hubzilla-635a24dff477548bdcf601874cb1ff2509aef3cc.tar.bz2
volse-hubzilla-635a24dff477548bdcf601874cb1ff2509aef3cc.zip
Merge branch 'dev' into 'dev'
Random PHP 8 fixes See merge request hubzilla/core!1951
Diffstat (limited to 'include/channel.php')
-rw-r--r--include/channel.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/channel.php b/include/channel.php
index bc9f686e7..804d8c63a 100644
--- a/include/channel.php
+++ b/include/channel.php
@@ -1516,8 +1516,11 @@ function profile_load($nickname, $profile = '') {
if($p[0]['keywords']) {
$keywords = str_replace(array('#',',',' ',',,'),array('',' ',',',','),$p[0]['keywords']);
- if(strlen($keywords) && $can_view_profile)
+ if(strlen($keywords) && $can_view_profile) {
+ if(! isset(App::$page['htmlhead']))
+ App::$page['htmlhead'] = '';
App::$page['htmlhead'] .= '<meta name="keywords" content="' . htmlentities($keywords,ENT_COMPAT,'UTF-8') . '" />' . "\r\n" ;
+ }
}
App::$profile = $p[0];