]> git.mxchange.org Git - friendica.git/commitdiff
pub_keywords -> meta keywords
authorFriendika <info@friendika.com>
Tue, 15 Mar 2011 03:19:45 +0000 (20:19 -0700)
committerFriendika <info@friendika.com>
Tue, 15 Mar 2011 03:19:45 +0000 (20:19 -0700)
boot.php
mod/profile.php

index 332830103768ed1a250a9304be8e9b29d45d9e30..92a0007e544d5c7e2218c80073ec2545538ec4f9 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -4,7 +4,7 @@ set_time_limit(0);
 
 define ( 'FRIENDIKA_VERSION',      '2.1.918' );
 define ( 'DFRN_PROTOCOL_VERSION',  '2.1'  );
-define ( 'DB_UPDATE_VERSION',      1041   );
+define ( 'DB_UPDATE_VERSION',      1042   );
 
 define ( 'EOL',                    "<br />\r\n"     );
 define ( 'ATOM_TIME',              'Y-m-d\TH:i:s\Z' );
index 5615573b952be9850f98b20d69339cf6c34c9eb4..88fc16ebb1f8707ba4e3b01217e600a317729fc1 100644 (file)
@@ -28,6 +28,11 @@ function profile_init(&$a) {
                $a->page['htmlhead'] .= '<link rel="openid.delegate" href="' . $delegate . '" />' . "\r\n";
        }
 
+       $keywords = ((x($a->profile,'pub_keywords')) ? $a->profile['pub_keywords'] : '');
+       $keywords = str_replace(array(',',' ',',,'),array(' ',',',','),$keywords);
+       if(strlen($keywords))
+               $a->page['htmlhead'] .= '<meta name="keywords" content="' . $keywords . '" />' . "\r\n" ;
+
        $a->page['htmlhead'] .= '<meta name="dfrn-global-visibility" content="' . (($a->profile['net-publish']) ? 'true' : 'false') . '" />' . "\r\n" ;
        $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . $a->get_baseurl() . '/dfrn_poll/' . $which .'" />' . "\r\n" ;
        $uri = urlencode('acct:' . $a->profile['nickname'] . '@' . $a->get_hostname() . (($a->path) ? '/' . $a->path : ''));