aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-01-18 19:25:28 -0800
committerFriendika <info@friendika.com>2011-01-18 19:25:28 -0800
commitb40281802ffce0b977cb0b1c4d02902ecf82e753 (patch)
tree512b05743036a083b68cce77e64b69475bc66a5d /boot.php
parent028460a5c1de4833bb1dcfaa945c1292952bf923 (diff)
downloadvolse-hubzilla-b40281802ffce0b977cb0b1c4d02902ecf82e753.tar.gz
volse-hubzilla-b40281802ffce0b977cb0b1c4d02902ecf82e753.tar.bz2
volse-hubzilla-b40281802ffce0b977cb0b1c4d02902ecf82e753.zip
personal title
Diffstat (limited to 'boot.php')
-rw-r--r--boot.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/boot.php b/boot.php
index 85e159883..0567e41d6 100644
--- a/boot.php
+++ b/boot.php
@@ -2,8 +2,8 @@
set_time_limit(0);
-define ( 'BUILD_ID', 1032 );
-define ( 'FRIENDIKA_VERSION', '2.01.1003' );
+define ( 'BUILD_ID', 1033 );
+define ( 'FRIENDIKA_VERSION', '2.01.1004' );
define ( 'DFRN_PROTOCOL_VERSION', '2.0' );
define ( 'EOL', "<br />\r\n" );
@@ -2011,6 +2011,8 @@ function profile_sidebar($profile) {
$fullname = '<div class="fn">' . $profile['name'] . '</div>';
+ $pdesc = '<div class="title">' . $profile['pdesc'] . '</div>';
+
$tabs = '';
$photo = '<div id="profile=photo-wrapper"><img class="photo" src="' . $profile['photo'] . '" alt="' . $profile['name'] . '" /></div>';
@@ -2049,6 +2051,7 @@ function profile_sidebar($profile) {
$o .= replace_macros($tpl, array(
'$fullname' => $fullname,
+ '$pdesc' => $pdesc,
'$tabs' => $tabs,
'$photo' => $photo,
'$connect' => $connect,