diff --git a/boot.php b/boot.php index 5fe0d7dd26..b49c92bf05 100644 --- a/boot.php +++ b/boot.php @@ -11,7 +11,7 @@ require_once('include/cache.php'); require_once('library/Mobile_Detect/Mobile_Detect.php'); define ( 'FRIENDICA_PLATFORM', 'Friendica'); -define ( 'FRIENDICA_VERSION', '3.0.1439' ); +define ( 'FRIENDICA_VERSION', '3.0.1443' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); define ( 'DB_UPDATE_VERSION', 1154 ); @@ -253,6 +253,7 @@ define ( 'ACTIVITY_TAG', NAMESPACE_ACTIVITY_SCHEMA . 'tag' ); define ( 'ACTIVITY_FAVORITE', NAMESPACE_ACTIVITY_SCHEMA . 'favorite' ); define ( 'ACTIVITY_POKE', NAMESPACE_ZOT . '/activity/poke' ); +define ( 'ACTIVITY_MOOD', NAMESPACE_ZOT . '/activity/mood' ); define ( 'ACTIVITY_OBJ_COMMENT', NAMESPACE_ACTIVITY_SCHEMA . 'comment' ); define ( 'ACTIVITY_OBJ_NOTE', NAMESPACE_ACTIVITY_SCHEMA . 'note' ); diff --git a/include/conversation.php b/include/conversation.php index 1b17bb0df4..93532dfcc2 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -205,6 +205,20 @@ function localize_item(&$item){ $item['body'] = sprintf($txt, $A, $B). "\n\n\n" . $Bphoto; } + if (stristr($item['verb'],ACTIVITY_MOOD)) { + $verb = urldecode(substr($item['verb'],strpos($item['verb'],'#')+1)); + if(! $verb) + return; + + $Aname = $item['author-name']; + $Alink = $item['author-link']; + $A = '[url=' . zrl($Alink) . ']' . $Aname . '[/url]'; + + $txt = t('%1$s is currently %2$s'); + + $item['body'] = sprintf($txt, $A, t($verb)); + } + if ($item['verb']===ACTIVITY_TAG){ $r = q("SELECT * from `item`,`contact` WHERE `item`.`contact-id`=`contact`.`id` AND `item`.`uri`='%s';", @@ -508,6 +522,13 @@ function prepare_threads_body($a, $items, $cmnt_tpl, $page_writeable, $mode, $pr } } + if(intval(get_config('system','thread_allow')) && $a->theme_thread_allow) { + $comments_threaded = true; + } + else { + $comments_threaded = false; + } + if($page_writeable) { $buttons = array( 'like' => array( t("I like this \x28toggle\x29"), t("like")), @@ -524,7 +545,8 @@ function prepare_threads_body($a, $items, $cmnt_tpl, $page_writeable, $mode, $pr $qcomment = (($qc) ? explode("\n",$qc) : null); } $comment = replace_macros($cmnt_tpl,array( - '$return_path' => '', + '$return_path' => '', + '$threaded' => $comments_threaded, '$jsreload' => (($mode === 'display') ? $_SESSION['return_url'] : ''), '$type' => (($mode === 'profile') ? 'wall-comment' : 'net-comment'), '$id' => $item['item_id'], @@ -583,6 +605,8 @@ function prepare_threads_body($a, $items, $cmnt_tpl, $page_writeable, $mode, $pr 'osparkle' => $osparkle, 'sparkle' => $sparkle, 'title' => template_escape($item['title']), + 'localtime' => datetime_convert('UTC', date_default_timezone_get(), $item['created'], 'r'), + 'ago' => (($item['app']) ? sprintf( t('%s from %s'),relative_date($item['created']),$item['app']) : relative_date($item['created'])), 'lock' => $lock, 'location' => template_escape($location), @@ -815,6 +839,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { 'title' => template_escape($item['title']), 'body' => template_escape($body), 'text' => strip_tags(template_escape($body)), + 'localtime' => datetime_convert('UTC', date_default_timezone_get(), $item['created'], 'r'), 'ago' => (($item['app']) ? sprintf( t('%s from %s'),relative_date($item['created']),$item['app']) : relative_date($item['created'])), 'location' => template_escape($location), 'indent' => '', diff --git a/include/text.php b/include/text.php index 85ba99dd31..3783d2accd 100644 --- a/include/text.php +++ b/include/text.php @@ -727,6 +727,39 @@ function get_poke_verbs() { return $arr; } +function get_mood_verbs() { + + // index is present tense verb + // value is array containing past tense verb, translation of present, translation of past + + $arr = array( + 'happy' => t('happy'), + 'sad' => t('sad'), + 'mellow' => t('mellow'), + 'tired' => t('tired'), + 'perky' => t('perky'), + 'angry' => t('angry'), + 'stupefied' => t('stupified'), + 'puzzled' => t('puzzled'), + 'interested' => t('interested'), + 'bitter' => t('bitter'), + 'cheerful' => t('cheerful'), + 'alive' => t('alive'), + 'annoyed' => t('annoyed'), + 'anxious' => t('anxious'), + 'cranky' => t('cranky'), + 'disturbed' => t('disturbed'), + 'frustrated' => t('frustrated'), + 'motivated' => t('motivated'), + 'relaxed' => t('relaxed'), + 'surprised' => t('surprised'), + ); + + call_hooks('mood_verbs', $arr); + return $arr; +} + + /** * * Function: smilies diff --git a/mod/mood.php b/mod/mood.php new file mode 100644 index 0000000000..7a793c71e0 --- /dev/null +++ b/mod/mood.php @@ -0,0 +1,142 @@ +user['allow_cid']; + $allow_gid = $a->user['allow_gid']; + $deny_cid = $a->user['deny_cid']; + $deny_gid = $a->user['deny_gid']; + } + + $poster = $a->contact; + + $uri = item_new_uri($a->get_hostname(),$uid); + + $action = sprintf( t('%1$s is currently %2$s'), '[url=' . $poster['url'] . ']' . $poster['name'] . '[/url]' , $verbs[$verb]); + + $arr = array(); + + $arr['uid'] = $uid; + $arr['uri'] = $uri; + $arr['parent-uri'] = (($parent_uri) ? $parent_uri : $uri); + $arr['type'] = 'activity'; + $arr['wall'] = 1; + $arr['contact-id'] = $poster['id']; + $arr['owner-name'] = $poster['name']; + $arr['owner-link'] = $poster['url']; + $arr['owner-avatar'] = $poster['thumb']; + $arr['author-name'] = $poster['name']; + $arr['author-link'] = $poster['url']; + $arr['author-avatar'] = $poster['thumb']; + $arr['title'] = ''; + $arr['allow_cid'] = $allow_cid; + $arr['allow_gid'] = $allow_gid; + $arr['deny_cid'] = $deny_cid; + $arr['deny_gid'] = $deny_gid; + $arr['last-child'] = 1; + $arr['visible'] = 1; + $arr['verb'] = $activity; + $arr['private'] = $private; + + $arr['origin'] = 1; + $arr['body'] = $action; + + $item_id = item_store($arr); + if($item_id) { + q("UPDATE `item` SET `plink` = '%s' WHERE `uid` = %d AND `id` = %d LIMIT 1", + dbesc($a->get_baseurl() . '/display/' . $poster['nickname'] . '/' . $item_id), + intval($uid), + intval($item_id) + ); + proc_run('php',"include/notifier.php","tag","$item_id"); + } + + + call_hooks('post_local_end', $arr); + + proc_run('php',"include/notifier.php","like","$post_id"); + + return; +} + + + +function mood_content(&$a) { + + if(! local_user()) { + notice( t('Permission denied.') . EOL); + return; + } + + $parent = ((x($_GET,'parent')) ? intval($_GET['parent']) : '0'); + + + + $verbs = get_mood_verbs(); + + $shortlist = array(); + foreach($verbs as $k => $v) + if($v !== 'NOTRANSLATION') + $shortlist[] = array($k,$v); + + + $tpl = get_markup_template('mood_content.tpl'); + + $o = replace_macros($tpl,array( + '$title' => t('Mood'), + '$desc' => t('Set your current mood and tell your friends'), + '$verbs' => $shortlist, + '$parent' => $parent, + '$submit' => t('Submit'), + )); + + return $o; + +} \ No newline at end of file diff --git a/mod/poke.php b/mod/poke.php index 5cd88d7e2a..edcb27d021 100644 --- a/mod/poke.php +++ b/mod/poke.php @@ -73,7 +73,7 @@ function poke_init(&$a) { $poster = $a->contact; - $uri = item_new_uri($a->get_hostname(),$owner_uid); + $uri = item_new_uri($a->get_hostname(),$uid); $arr = array(); diff --git a/mod/profiles.php b/mod/profiles.php index 975a8c2127..74844ff42e 100644 --- a/mod/profiles.php +++ b/mod/profiles.php @@ -48,10 +48,15 @@ function profiles_post(&$a) { $name = notags(trim($_POST['name'])); + if(! strlen($name)) { + $name = '[No Name]'; + } + if($orig[0]['name'] != $name) $namechanged = true; + $pdesc = notags(trim($_POST['pdesc'])); $gender = notags(trim($_POST['gender'])); $address = notags(trim($_POST['address'])); diff --git a/util/messages.po b/util/messages.po index 82b79605b0..b05275c163 100644 --- a/util/messages.po +++ b/util/messages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 3.0.1439\n" +"Project-Id-Version: 3.0.1443\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-18 10:00-0700\n" +"POT-Creation-Date: 2012-08-22 10:00-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -52,7 +52,7 @@ msgstr "" #: ../../mod/message.php:168 ../../mod/allfriends.php:9 #: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:53 #: ../../mod/follow.php:9 ../../mod/display.php:131 ../../mod/profiles.php:7 -#: ../../mod/profiles.php:408 ../../mod/delegate.php:6 +#: ../../mod/profiles.php:413 ../../mod/delegate.php:6 #: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81 #: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510 #: ../../addon/facebook/facebook.php:516 @@ -134,7 +134,7 @@ msgstr "" #: ../../mod/settings.php:958 ../../mod/group.php:85 ../../mod/message.php:294 #: ../../mod/message.php:478 ../../mod/admin.php:435 ../../mod/admin.php:676 #: ../../mod/admin.php:812 ../../mod/admin.php:1011 ../../mod/admin.php:1098 -#: ../../mod/profiles.php:578 ../../mod/invite.php:119 +#: ../../mod/profiles.php:583 ../../mod/invite.php:119 #: ../../addon/fromgplus/fromgplus.php:40 #: ../../addon/facebook/facebook.php:619 #: ../../addon/snautofollow/snautofollow.php:64 ../../addon/bg/bg.php:90 @@ -173,7 +173,7 @@ msgstr "" #: ../../view/theme/diabook/theme.php:757 #: ../../view/theme/diabook/config.php:190 #: ../../view/theme/quattro/config.php:52 ../../view/theme/dispy/config.php:70 -#: ../../include/conversation.php:538 +#: ../../include/conversation.php:546 msgid "Submit" msgstr "" @@ -233,7 +233,7 @@ msgid "link to source" msgstr "" #: ../../mod/events.php:331 ../../view/theme/diabook/theme.php:131 -#: ../../include/nav.php:52 ../../boot.php:1651 +#: ../../include/nav.php:52 ../../boot.php:1655 msgid "Events" msgstr "" @@ -289,7 +289,7 @@ msgstr "" #: ../../mod/events.php:432 ../../mod/directory.php:132 #: ../../include/event.php:40 ../../include/bb2diaspora.php:455 -#: ../../boot.php:1203 +#: ../../boot.php:1207 msgid "Location:" msgstr "" @@ -355,7 +355,7 @@ msgstr "" #: ../../mod/settings.php:945 ../../mod/settings.php:946 #: ../../mod/settings.php:947 ../../mod/settings.php:948 #: ../../mod/settings.php:949 ../../mod/register.php:234 -#: ../../mod/profiles.php:558 +#: ../../mod/profiles.php:563 msgid "Yes" msgstr "" @@ -367,11 +367,11 @@ msgstr "" #: ../../mod/settings.php:945 ../../mod/settings.php:946 #: ../../mod/settings.php:947 ../../mod/settings.php:948 #: ../../mod/settings.php:949 ../../mod/register.php:235 -#: ../../mod/profiles.php:559 +#: ../../mod/profiles.php:564 msgid "No" msgstr "" -#: ../../mod/photos.php:46 ../../boot.php:1644 +#: ../../mod/photos.php:46 ../../boot.php:1648 msgid "Photo Albums" msgstr "" @@ -566,49 +566,49 @@ msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "" #: ../../mod/photos.php:1303 ../../mod/content.php:665 -#: ../../include/conversation.php:513 +#: ../../include/conversation.php:520 msgid "I like this (toggle)" msgstr "" #: ../../mod/photos.php:1304 ../../mod/content.php:666 -#: ../../include/conversation.php:514 +#: ../../include/conversation.php:521 msgid "I don't like this (toggle)" msgstr "" -#: ../../mod/photos.php:1305 ../../include/conversation.php:1139 +#: ../../mod/photos.php:1305 ../../include/conversation.php:1150 msgid "Share" msgstr "" #: ../../mod/photos.php:1306 ../../mod/editpost.php:112 #: ../../mod/content.php:482 ../../mod/content.php:843 #: ../../mod/wallmessage.php:152 ../../mod/message.php:293 -#: ../../mod/message.php:479 ../../include/conversation.php:604 -#: ../../include/conversation.php:835 ../../include/conversation.php:1158 +#: ../../mod/message.php:479 ../../include/conversation.php:614 +#: ../../include/conversation.php:846 ../../include/conversation.php:1169 msgid "Please wait" msgstr "" #: ../../mod/photos.php:1322 ../../mod/photos.php:1363 #: ../../mod/photos.php:1395 ../../mod/content.php:688 -#: ../../include/conversation.php:535 +#: ../../include/conversation.php:543 msgid "This is you" msgstr "" #: ../../mod/photos.php:1324 ../../mod/photos.php:1365 #: ../../mod/photos.php:1397 ../../mod/content.php:690 -#: ../../include/conversation.php:537 ../../boot.php:582 +#: ../../include/conversation.php:545 ../../boot.php:582 msgid "Comment" msgstr "" #: ../../mod/photos.php:1326 ../../mod/editpost.php:133 -#: ../../mod/content.php:700 ../../include/conversation.php:547 -#: ../../include/conversation.php:1176 +#: ../../mod/content.php:700 ../../include/conversation.php:555 +#: ../../include/conversation.php:1187 msgid "Preview" msgstr "" #: ../../mod/photos.php:1426 ../../mod/content.php:439 #: ../../mod/content.php:721 ../../mod/settings.php:600 #: ../../mod/settings.php:689 ../../mod/group.php:168 ../../mod/admin.php:683 -#: ../../include/conversation.php:395 ../../include/conversation.php:792 +#: ../../include/conversation.php:395 ../../include/conversation.php:802 msgid "Delete" msgstr "" @@ -674,7 +674,7 @@ msgstr "" msgid "Edit post" msgstr "" -#: ../../mod/editpost.php:88 ../../include/conversation.php:1125 +#: ../../mod/editpost.php:88 ../../include/conversation.php:1136 msgid "Post to Email" msgstr "" @@ -685,17 +685,17 @@ msgstr "" #: ../../mod/editpost.php:104 ../../mod/wallmessage.php:150 #: ../../mod/message.php:291 ../../mod/message.php:476 -#: ../../include/conversation.php:1140 +#: ../../include/conversation.php:1151 msgid "Upload photo" msgstr "" -#: ../../mod/editpost.php:105 ../../include/conversation.php:1142 +#: ../../mod/editpost.php:105 ../../include/conversation.php:1153 msgid "Attach file" msgstr "" #: ../../mod/editpost.php:106 ../../mod/wallmessage.php:151 #: ../../mod/message.php:292 ../../mod/message.php:477 -#: ../../include/conversation.php:1144 +#: ../../include/conversation.php:1155 msgid "Insert web link" msgstr "" @@ -711,35 +711,35 @@ msgstr "" msgid "Insert Vorbis [.ogg] audio" msgstr "" -#: ../../mod/editpost.php:110 ../../include/conversation.php:1150 +#: ../../mod/editpost.php:110 ../../include/conversation.php:1161 msgid "Set your location" msgstr "" -#: ../../mod/editpost.php:111 ../../include/conversation.php:1152 +#: ../../mod/editpost.php:111 ../../include/conversation.php:1163 msgid "Clear browser location" msgstr "" -#: ../../mod/editpost.php:113 ../../include/conversation.php:1159 +#: ../../mod/editpost.php:113 ../../include/conversation.php:1170 msgid "Permission settings" msgstr "" -#: ../../mod/editpost.php:121 ../../include/conversation.php:1168 +#: ../../mod/editpost.php:121 ../../include/conversation.php:1179 msgid "CC: email addresses" msgstr "" -#: ../../mod/editpost.php:122 ../../include/conversation.php:1169 +#: ../../mod/editpost.php:122 ../../include/conversation.php:1180 msgid "Public post" msgstr "" -#: ../../mod/editpost.php:125 ../../include/conversation.php:1155 +#: ../../mod/editpost.php:125 ../../include/conversation.php:1166 msgid "Set title" msgstr "" -#: ../../mod/editpost.php:127 ../../include/conversation.php:1157 +#: ../../mod/editpost.php:127 ../../include/conversation.php:1168 msgid "Categories (comma-separated list)" msgstr "" -#: ../../mod/editpost.php:128 ../../include/conversation.php:1171 +#: ../../mod/editpost.php:128 ../../include/conversation.php:1182 msgid "Example: bob@example.com, mary@example.com" msgstr "" @@ -1252,7 +1252,7 @@ msgid "is interested in:" msgstr "" #: ../../mod/match.php:58 ../../mod/suggest.php:59 -#: ../../include/contact_widgets.php:9 ../../boot.php:1147 +#: ../../include/contact_widgets.php:9 ../../boot.php:1151 msgid "Connect" msgstr "" @@ -1281,28 +1281,28 @@ msgid "Group: " msgstr "" #: ../../mod/content.php:438 ../../mod/content.php:720 -#: ../../include/conversation.php:394 ../../include/conversation.php:791 +#: ../../include/conversation.php:394 ../../include/conversation.php:801 msgid "Select" msgstr "" #: ../../mod/content.php:455 ../../mod/content.php:813 -#: ../../mod/content.php:814 ../../include/conversation.php:574 -#: ../../include/conversation.php:575 ../../include/conversation.php:808 +#: ../../mod/content.php:814 ../../include/conversation.php:582 +#: ../../include/conversation.php:583 ../../include/conversation.php:818 #, php-format msgid "View %s's profile @ %s" msgstr "" #: ../../mod/content.php:465 ../../mod/content.php:825 -#: ../../include/conversation.php:586 ../../include/conversation.php:818 +#: ../../include/conversation.php:596 ../../include/conversation.php:829 #, php-format msgid "%s from %s" msgstr "" -#: ../../mod/content.php:480 ../../include/conversation.php:833 +#: ../../mod/content.php:480 ../../include/conversation.php:844 msgid "View in context" msgstr "" -#: ../../mod/content.php:586 ../../include/conversation.php:613 +#: ../../mod/content.php:586 ../../include/conversation.php:623 #, php-format msgid "%d comment" msgid_plural "%d comments" @@ -1311,56 +1311,56 @@ msgstr[1] "" #: ../../mod/content.php:587 ../../addon/page/page.php:76 #: ../../addon/page/page.php:110 ../../addon/showmore/showmore.php:119 -#: ../../include/contact_widgets.php:188 ../../include/conversation.php:614 +#: ../../include/contact_widgets.php:188 ../../include/conversation.php:624 #: ../../boot.php:583 msgid "show more" msgstr "" -#: ../../mod/content.php:665 ../../include/conversation.php:513 +#: ../../mod/content.php:665 ../../include/conversation.php:520 msgid "like" msgstr "" -#: ../../mod/content.php:666 ../../include/conversation.php:514 +#: ../../mod/content.php:666 ../../include/conversation.php:521 msgid "dislike" msgstr "" -#: ../../mod/content.php:668 ../../include/conversation.php:516 +#: ../../mod/content.php:668 ../../include/conversation.php:523 msgid "Share this" msgstr "" -#: ../../mod/content.php:668 ../../include/conversation.php:516 +#: ../../mod/content.php:668 ../../include/conversation.php:523 msgid "share" msgstr "" -#: ../../mod/content.php:692 ../../include/conversation.php:539 +#: ../../mod/content.php:692 ../../include/conversation.php:547 msgid "Bold" msgstr "" -#: ../../mod/content.php:693 ../../include/conversation.php:540 +#: ../../mod/content.php:693 ../../include/conversation.php:548 msgid "Italic" msgstr "" -#: ../../mod/content.php:694 ../../include/conversation.php:541 +#: ../../mod/content.php:694 ../../include/conversation.php:549 msgid "Underline" msgstr "" -#: ../../mod/content.php:695 ../../include/conversation.php:542 +#: ../../mod/content.php:695 ../../include/conversation.php:550 msgid "Quote" msgstr "" -#: ../../mod/content.php:696 ../../include/conversation.php:543 +#: ../../mod/content.php:696 ../../include/conversation.php:551 msgid "Code" msgstr "" -#: ../../mod/content.php:697 ../../include/conversation.php:544 +#: ../../mod/content.php:697 ../../include/conversation.php:552 msgid "Image" msgstr "" -#: ../../mod/content.php:698 ../../include/conversation.php:545 +#: ../../mod/content.php:698 ../../include/conversation.php:553 msgid "Link" msgstr "" -#: ../../mod/content.php:699 ../../include/conversation.php:546 +#: ../../mod/content.php:699 ../../include/conversation.php:554 msgid "Video" msgstr "" @@ -1388,15 +1388,15 @@ msgstr "" msgid "save to folder" msgstr "" -#: ../../mod/content.php:815 ../../include/conversation.php:576 +#: ../../mod/content.php:815 ../../include/conversation.php:584 msgid "to" msgstr "" -#: ../../mod/content.php:816 ../../include/conversation.php:577 +#: ../../mod/content.php:816 ../../include/conversation.php:585 msgid "Wall-to-Wall" msgstr "" -#: ../../mod/content.php:817 ../../include/conversation.php:578 +#: ../../mod/content.php:817 ../../include/conversation.php:586 msgid "via Wall-To-Wall:" msgstr "" @@ -1925,7 +1925,7 @@ msgid "" "Password reset failed." msgstr "" -#: ../../mod/lostpass.php:83 ../../boot.php:929 +#: ../../mod/lostpass.php:83 ../../boot.php:933 msgid "Password Reset" msgstr "" @@ -2593,7 +2593,7 @@ msgstr "" msgid "Invalid contact." msgstr "" -#: ../../mod/notes.php:44 ../../boot.php:1658 +#: ../../mod/notes.php:44 ../../boot.php:1662 msgid "Personal Notes" msgstr "" @@ -2636,7 +2636,7 @@ msgstr "" #: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131 #: ../../mod/message.php:242 ../../mod/message.php:250 -#: ../../include/conversation.php:1076 ../../include/conversation.php:1093 +#: ../../include/conversation.php:1087 ../../include/conversation.php:1104 msgid "Please enter a link URL:" msgstr "" @@ -2846,7 +2846,7 @@ msgstr "" #: ../../mod/profperm.php:103 ../../view/theme/diabook/theme.php:128 #: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84 -#: ../../include/nav.php:50 ../../boot.php:1634 +#: ../../include/nav.php:50 ../../boot.php:1638 msgid "Profile" msgstr "" @@ -2993,7 +2993,7 @@ msgid "Access denied." msgstr "" #: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:130 -#: ../../include/nav.php:51 ../../boot.php:1641 +#: ../../include/nav.php:51 ../../boot.php:1645 msgid "Photos" msgstr "" @@ -3825,7 +3825,7 @@ msgstr "" msgid "FTP Password" msgstr "" -#: ../../mod/profile.php:22 ../../boot.php:1060 +#: ../../mod/profile.php:22 ../../boot.php:1064 msgid "Requested profile is not available." msgstr "" @@ -3933,8 +3933,8 @@ msgstr "" msgid "Search" msgstr "" -#: ../../mod/profiles.php:21 ../../mod/profiles.php:418 -#: ../../mod/profiles.php:532 ../../mod/dfrn_confirm.php:62 +#: ../../mod/profiles.php:21 ../../mod/profiles.php:423 +#: ../../mod/profiles.php:537 ../../mod/dfrn_confirm.php:62 msgid "Profile not found." msgstr "" @@ -3942,306 +3942,306 @@ msgstr "" msgid "Profile Name is required." msgstr "" -#: ../../mod/profiles.php:155 +#: ../../mod/profiles.php:160 msgid "Marital Status" msgstr "" -#: ../../mod/profiles.php:159 +#: ../../mod/profiles.php:164 msgid "Romantic Partner" msgstr "" -#: ../../mod/profiles.php:163 +#: ../../mod/profiles.php:168 msgid "Likes" msgstr "" -#: ../../mod/profiles.php:167 +#: ../../mod/profiles.php:172 msgid "Dislikes" msgstr "" -#: ../../mod/profiles.php:171 +#: ../../mod/profiles.php:176 msgid "Work/Employment" msgstr "" -#: ../../mod/profiles.php:174 +#: ../../mod/profiles.php:179 msgid "Religion" msgstr "" -#: ../../mod/profiles.php:178 +#: ../../mod/profiles.php:183 msgid "Political Views" msgstr "" -#: ../../mod/profiles.php:182 +#: ../../mod/profiles.php:187 msgid "Gender" msgstr "" -#: ../../mod/profiles.php:186 +#: ../../mod/profiles.php:191 msgid "Sexual Preference" msgstr "" -#: ../../mod/profiles.php:190 +#: ../../mod/profiles.php:195 msgid "Homepage" msgstr "" -#: ../../mod/profiles.php:194 +#: ../../mod/profiles.php:199 msgid "Interests" msgstr "" -#: ../../mod/profiles.php:198 +#: ../../mod/profiles.php:203 msgid "Address" msgstr "" -#: ../../mod/profiles.php:205 ../../addon/dav/common/wdcal_edit.inc.php:183 +#: ../../mod/profiles.php:210 ../../addon/dav/common/wdcal_edit.inc.php:183 msgid "Location" msgstr "" -#: ../../mod/profiles.php:288 +#: ../../mod/profiles.php:293 msgid "Profile updated." msgstr "" -#: ../../mod/profiles.php:355 +#: ../../mod/profiles.php:360 msgid " and " msgstr "" -#: ../../mod/profiles.php:363 +#: ../../mod/profiles.php:368 msgid "public profile" msgstr "" -#: ../../mod/profiles.php:366 +#: ../../mod/profiles.php:371 #, php-format msgid "%1$s changed %2$s to “%3$s”" msgstr "" -#: ../../mod/profiles.php:367 +#: ../../mod/profiles.php:372 #, php-format msgid " - Visit %1$s's %2$s" msgstr "" -#: ../../mod/profiles.php:370 +#: ../../mod/profiles.php:375 #, php-format msgid "%1$s has an updated %2$s, changing %3$s." msgstr "" -#: ../../mod/profiles.php:437 +#: ../../mod/profiles.php:442 msgid "Profile deleted." msgstr "" -#: ../../mod/profiles.php:455 ../../mod/profiles.php:489 +#: ../../mod/profiles.php:460 ../../mod/profiles.php:494 msgid "Profile-" msgstr "" -#: ../../mod/profiles.php:474 ../../mod/profiles.php:516 +#: ../../mod/profiles.php:479 ../../mod/profiles.php:521 msgid "New profile created." msgstr "" -#: ../../mod/profiles.php:495 +#: ../../mod/profiles.php:500 msgid "Profile unavailable to clone." msgstr "" -#: ../../mod/profiles.php:557 +#: ../../mod/profiles.php:562 msgid "Hide your contact/friend list from viewers of this profile?" msgstr "" -#: ../../mod/profiles.php:577 +#: ../../mod/profiles.php:582 msgid "Edit Profile Details" msgstr "" -#: ../../mod/profiles.php:579 +#: ../../mod/profiles.php:584 msgid "View this profile" msgstr "" -#: ../../mod/profiles.php:580 +#: ../../mod/profiles.php:585 msgid "Create a new profile using these settings" msgstr "" -#: ../../mod/profiles.php:581 +#: ../../mod/profiles.php:586 msgid "Clone this profile" msgstr "" -#: ../../mod/profiles.php:582 +#: ../../mod/profiles.php:587 msgid "Delete this profile" msgstr "" -#: ../../mod/profiles.php:583 +#: ../../mod/profiles.php:588 msgid "Profile Name:" msgstr "" -#: ../../mod/profiles.php:584 +#: ../../mod/profiles.php:589 msgid "Your Full Name:" msgstr "" -#: ../../mod/profiles.php:585 +#: ../../mod/profiles.php:590 msgid "Title/Description:" msgstr "" -#: ../../mod/profiles.php:586 +#: ../../mod/profiles.php:591 msgid "Your Gender:" msgstr "" -#: ../../mod/profiles.php:587 +#: ../../mod/profiles.php:592 #, php-format msgid "Birthday (%s):" msgstr "" -#: ../../mod/profiles.php:588 +#: ../../mod/profiles.php:593 msgid "Street Address:" msgstr "" -#: ../../mod/profiles.php:589 +#: ../../mod/profiles.php:594 msgid "Locality/City:" msgstr "" -#: ../../mod/profiles.php:590 +#: ../../mod/profiles.php:595 msgid "Postal/Zip Code:" msgstr "" -#: ../../mod/profiles.php:591 +#: ../../mod/profiles.php:596 msgid "Country:" msgstr "" -#: ../../mod/profiles.php:592 +#: ../../mod/profiles.php:597 msgid "Region/State:" msgstr "" -#: ../../mod/profiles.php:593 +#: ../../mod/profiles.php:598 msgid " Marital Status:" msgstr "" -#: ../../mod/profiles.php:594 +#: ../../mod/profiles.php:599 msgid "Who: (if applicable)" msgstr "" -#: ../../mod/profiles.php:595 +#: ../../mod/profiles.php:600 msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "" -#: ../../mod/profiles.php:596 +#: ../../mod/profiles.php:601 msgid "Since [date]:" msgstr "" -#: ../../mod/profiles.php:597 ../../include/profile_advanced.php:46 +#: ../../mod/profiles.php:602 ../../include/profile_advanced.php:46 msgid "Sexual Preference:" msgstr "" -#: ../../mod/profiles.php:598 +#: ../../mod/profiles.php:603 msgid "Homepage URL:" msgstr "" -#: ../../mod/profiles.php:599 ../../include/profile_advanced.php:50 +#: ../../mod/profiles.php:604 ../../include/profile_advanced.php:50 msgid "Hometown:" msgstr "" -#: ../../mod/profiles.php:600 ../../include/profile_advanced.php:54 +#: ../../mod/profiles.php:605 ../../include/profile_advanced.php:54 msgid "Political Views:" msgstr "" -#: ../../mod/profiles.php:601 +#: ../../mod/profiles.php:606 msgid "Religious Views:" msgstr "" -#: ../../mod/profiles.php:602 +#: ../../mod/profiles.php:607 msgid "Public Keywords:" msgstr "" -#: ../../mod/profiles.php:603 +#: ../../mod/profiles.php:608 msgid "Private Keywords:" msgstr "" -#: ../../mod/profiles.php:604 ../../include/profile_advanced.php:62 +#: ../../mod/profiles.php:609 ../../include/profile_advanced.php:62 msgid "Likes:" msgstr "" -#: ../../mod/profiles.php:605 ../../include/profile_advanced.php:64 +#: ../../mod/profiles.php:610 ../../include/profile_advanced.php:64 msgid "Dislikes:" msgstr "" -#: ../../mod/profiles.php:606 +#: ../../mod/profiles.php:611 msgid "Example: fishing photography software" msgstr "" -#: ../../mod/profiles.php:607 +#: ../../mod/profiles.php:612 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "" -#: ../../mod/profiles.php:608 +#: ../../mod/profiles.php:613 msgid "(Used for searching profiles, never shown to others)" msgstr "" -#: ../../mod/profiles.php:609 +#: ../../mod/profiles.php:614 msgid "Tell us about yourself..." msgstr "" -#: ../../mod/profiles.php:610 +#: ../../mod/profiles.php:615 msgid "Hobbies/Interests" msgstr "" -#: ../../mod/profiles.php:611 +#: ../../mod/profiles.php:616 msgid "Contact information and Social Networks" msgstr "" -#: ../../mod/profiles.php:612 +#: ../../mod/profiles.php:617 msgid "Musical interests" msgstr "" -#: ../../mod/profiles.php:613 +#: ../../mod/profiles.php:618 msgid "Books, literature" msgstr "" -#: ../../mod/profiles.php:614 +#: ../../mod/profiles.php:619 msgid "Television" msgstr "" -#: ../../mod/profiles.php:615 +#: ../../mod/profiles.php:620 msgid "Film/dance/culture/entertainment" msgstr "" -#: ../../mod/profiles.php:616 +#: ../../mod/profiles.php:621 msgid "Love/romance" msgstr "" -#: ../../mod/profiles.php:617 +#: ../../mod/profiles.php:622 msgid "Work/employment" msgstr "" -#: ../../mod/profiles.php:618 +#: ../../mod/profiles.php:623 msgid "School/education" msgstr "" -#: ../../mod/profiles.php:623 +#: ../../mod/profiles.php:628 msgid "" "This is your public profile.
It may " "be visible to anybody using the internet." msgstr "" -#: ../../mod/profiles.php:633 ../../mod/directory.php:109 +#: ../../mod/profiles.php:638 ../../mod/directory.php:109 msgid "Age: " msgstr "" -#: ../../mod/profiles.php:672 +#: ../../mod/profiles.php:677 msgid "Edit/Manage Profiles" msgstr "" -#: ../../mod/profiles.php:673 ../../boot.php:1169 +#: ../../mod/profiles.php:678 ../../boot.php:1173 msgid "Change profile photo" msgstr "" -#: ../../mod/profiles.php:674 ../../boot.php:1170 +#: ../../mod/profiles.php:679 ../../boot.php:1174 msgid "Create New Profile" msgstr "" -#: ../../mod/profiles.php:685 ../../boot.php:1180 +#: ../../mod/profiles.php:690 ../../boot.php:1184 msgid "Profile Image" msgstr "" -#: ../../mod/profiles.php:687 ../../boot.php:1183 +#: ../../mod/profiles.php:692 ../../boot.php:1187 msgid "visible to everybody" msgstr "" -#: ../../mod/profiles.php:688 ../../boot.php:1184 +#: ../../mod/profiles.php:693 ../../boot.php:1188 msgid "Edit visibility" msgstr "" -#: ../../mod/filer.php:29 ../../include/conversation.php:1080 -#: ../../include/conversation.php:1097 +#: ../../mod/filer.php:29 ../../include/conversation.php:1091 +#: ../../include/conversation.php:1108 msgid "Save to Folder:" msgstr "" @@ -4365,17 +4365,17 @@ msgid "Gender: " msgstr "" #: ../../mod/directory.php:134 ../../include/profile_advanced.php:17 -#: ../../boot.php:1205 +#: ../../boot.php:1209 msgid "Gender:" msgstr "" #: ../../mod/directory.php:136 ../../include/profile_advanced.php:37 -#: ../../boot.php:1208 +#: ../../boot.php:1212 msgid "Status:" msgstr "" #: ../../mod/directory.php:138 ../../include/profile_advanced.php:48 -#: ../../boot.php:1210 +#: ../../boot.php:1214 msgid "Homepage:" msgstr "" @@ -5134,7 +5134,7 @@ msgstr "" #: ../../addon/communityhome/communityhome.php:34 #: ../../addon/communityhome/twillingham/communityhome.php:28 #: ../../addon/communityhome/twillingham/communityhome.php:34 -#: ../../include/nav.php:64 ../../boot.php:916 +#: ../../include/nav.php:64 ../../boot.php:920 msgid "Login" msgstr "" @@ -7587,7 +7587,7 @@ msgstr "" msgid "Contacts not in any group" msgstr "" -#: ../../include/nav.php:46 ../../boot.php:915 +#: ../../include/nav.php:46 ../../boot.php:919 msgid "Logout" msgstr "" @@ -7595,7 +7595,7 @@ msgstr "" msgid "End this session" msgstr "" -#: ../../include/nav.php:49 ../../boot.php:1627 +#: ../../include/nav.php:49 ../../boot.php:1631 msgid "Status" msgstr "" @@ -7675,11 +7675,11 @@ msgstr "" msgid "Manage other pages" msgstr "" -#: ../../include/nav.php:138 ../../boot.php:1163 +#: ../../include/nav.php:138 ../../boot.php:1167 msgid "Profiles" msgstr "" -#: ../../include/nav.php:138 ../../boot.php:1163 +#: ../../include/nav.php:138 ../../boot.php:1167 msgid "Manage/edit profiles" msgstr "" @@ -7847,7 +7847,7 @@ msgstr "" msgid "$1 wrote:" msgstr "" -#: ../../include/bbcode.php:327 +#: ../../include/bbcode.php:327 ../../include/bbcode.php:328 msgid "Encrypted content" msgstr "" @@ -8206,34 +8206,34 @@ msgstr "" msgid "stopped following" msgstr "" -#: ../../include/Contact.php:220 ../../include/conversation.php:977 +#: ../../include/Contact.php:220 ../../include/conversation.php:988 msgid "Poke" msgstr "" -#: ../../include/Contact.php:221 ../../include/conversation.php:971 +#: ../../include/Contact.php:221 ../../include/conversation.php:982 msgid "View Status" msgstr "" -#: ../../include/Contact.php:222 ../../include/conversation.php:972 +#: ../../include/Contact.php:222 ../../include/conversation.php:983 msgid "View Profile" msgstr "" -#: ../../include/Contact.php:223 ../../include/conversation.php:973 +#: ../../include/Contact.php:223 ../../include/conversation.php:984 msgid "View Photos" msgstr "" #: ../../include/Contact.php:224 ../../include/Contact.php:237 -#: ../../include/conversation.php:974 +#: ../../include/conversation.php:985 msgid "Network Posts" msgstr "" #: ../../include/Contact.php:225 ../../include/Contact.php:237 -#: ../../include/conversation.php:975 +#: ../../include/conversation.php:986 msgid "Edit Contact" msgstr "" #: ../../include/Contact.php:226 ../../include/Contact.php:237 -#: ../../include/conversation.php:976 +#: ../../include/conversation.php:987 msgid "Send PM" msgstr "" @@ -8251,106 +8251,106 @@ msgstr "" msgid "%1$s marked %2$s's %3$s as favorite" msgstr "" -#: ../../include/conversation.php:877 +#: ../../include/conversation.php:888 msgid "Delete Selected Items" msgstr "" -#: ../../include/conversation.php:1035 +#: ../../include/conversation.php:1046 #, php-format msgid "%s likes this." msgstr "" -#: ../../include/conversation.php:1035 +#: ../../include/conversation.php:1046 #, php-format msgid "%s doesn't like this." msgstr "" -#: ../../include/conversation.php:1039 +#: ../../include/conversation.php:1050 #, php-format msgid "%2$d people like this." msgstr "" -#: ../../include/conversation.php:1041 +#: ../../include/conversation.php:1052 #, php-format msgid "%2$d people don't like this." msgstr "" -#: ../../include/conversation.php:1047 +#: ../../include/conversation.php:1058 msgid "and" msgstr "" -#: ../../include/conversation.php:1050 +#: ../../include/conversation.php:1061 #, php-format msgid ", and %d other people" msgstr "" -#: ../../include/conversation.php:1051 +#: ../../include/conversation.php:1062 #, php-format msgid "%s like this." msgstr "" -#: ../../include/conversation.php:1051 +#: ../../include/conversation.php:1062 #, php-format msgid "%s don't like this." msgstr "" -#: ../../include/conversation.php:1075 ../../include/conversation.php:1092 +#: ../../include/conversation.php:1086 ../../include/conversation.php:1103 msgid "Visible to everybody" msgstr "" -#: ../../include/conversation.php:1077 ../../include/conversation.php:1094 +#: ../../include/conversation.php:1088 ../../include/conversation.php:1105 msgid "Please enter a video link/URL:" msgstr "" -#: ../../include/conversation.php:1078 ../../include/conversation.php:1095 +#: ../../include/conversation.php:1089 ../../include/conversation.php:1106 msgid "Please enter an audio link/URL:" msgstr "" -#: ../../include/conversation.php:1079 ../../include/conversation.php:1096 +#: ../../include/conversation.php:1090 ../../include/conversation.php:1107 msgid "Tag term:" msgstr "" -#: ../../include/conversation.php:1081 ../../include/conversation.php:1098 +#: ../../include/conversation.php:1092 ../../include/conversation.php:1109 msgid "Where are you right now?" msgstr "" -#: ../../include/conversation.php:1141 +#: ../../include/conversation.php:1152 msgid "upload photo" msgstr "" -#: ../../include/conversation.php:1143 +#: ../../include/conversation.php:1154 msgid "attach file" msgstr "" -#: ../../include/conversation.php:1145 +#: ../../include/conversation.php:1156 msgid "web link" msgstr "" -#: ../../include/conversation.php:1146 +#: ../../include/conversation.php:1157 msgid "Insert video link" msgstr "" -#: ../../include/conversation.php:1147 +#: ../../include/conversation.php:1158 msgid "video link" msgstr "" -#: ../../include/conversation.php:1148 +#: ../../include/conversation.php:1159 msgid "Insert audio link" msgstr "" -#: ../../include/conversation.php:1149 +#: ../../include/conversation.php:1160 msgid "audio link" msgstr "" -#: ../../include/conversation.php:1151 +#: ../../include/conversation.php:1162 msgid "set location" msgstr "" -#: ../../include/conversation.php:1153 +#: ../../include/conversation.php:1164 msgid "clear location" msgstr "" -#: ../../include/conversation.php:1160 +#: ../../include/conversation.php:1171 msgid "permissions" msgstr "" @@ -8388,74 +8388,74 @@ msgstr "" msgid "Create a New Account" msgstr "" -#: ../../boot.php:918 +#: ../../boot.php:922 msgid "Nickname or Email address: " msgstr "" -#: ../../boot.php:919 +#: ../../boot.php:923 msgid "Password: " msgstr "" -#: ../../boot.php:922 +#: ../../boot.php:926 msgid "Or login using OpenID: " msgstr "" -#: ../../boot.php:928 +#: ../../boot.php:932 msgid "Forgot your password?" msgstr "" -#: ../../boot.php:1095 +#: ../../boot.php:1099 msgid "Edit profile" msgstr "" -#: ../../boot.php:1155 +#: ../../boot.php:1159 msgid "Message" msgstr "" -#: ../../boot.php:1277 ../../boot.php:1363 +#: ../../boot.php:1281 ../../boot.php:1367 msgid "g A l F d" msgstr "" -#: ../../boot.php:1278 ../../boot.php:1364 +#: ../../boot.php:1282 ../../boot.php:1368 msgid "F d" msgstr "" -#: ../../boot.php:1323 ../../boot.php:1404 +#: ../../boot.php:1327 ../../boot.php:1408 msgid "[today]" msgstr "" -#: ../../boot.php:1335 +#: ../../boot.php:1339 msgid "Birthday Reminders" msgstr "" -#: ../../boot.php:1336 +#: ../../boot.php:1340 msgid "Birthdays this week:" msgstr "" -#: ../../boot.php:1397 +#: ../../boot.php:1401 msgid "[No description]" msgstr "" -#: ../../boot.php:1415 +#: ../../boot.php:1419 msgid "Event Reminders" msgstr "" -#: ../../boot.php:1416 +#: ../../boot.php:1420 msgid "Events this week:" msgstr "" -#: ../../boot.php:1630 +#: ../../boot.php:1634 msgid "Status Messages and Posts" msgstr "" -#: ../../boot.php:1637 +#: ../../boot.php:1641 msgid "Profile Details" msgstr "" -#: ../../boot.php:1654 +#: ../../boot.php:1658 msgid "Events and Calendar" msgstr "" -#: ../../boot.php:1661 +#: ../../boot.php:1665 msgid "Only You Can See This" msgstr "" diff --git a/view/comment_item.tpl b/view/comment_item.tpl index b2be6f94e3..98173aa306 100644 --- a/view/comment_item.tpl +++ b/view/comment_item.tpl @@ -1,6 +1,10 @@
+ {{ if $threaded }} $comment
$item.name -
$item.ago
+
$item.ago
diff --git a/view/theme/duepuntozero/comment_item.tpl b/view/theme/duepuntozero/comment_item.tpl index 63c05f335c..f64ae753b6 100755 --- a/view/theme/duepuntozero/comment_item.tpl +++ b/view/theme/duepuntozero/comment_item.tpl @@ -1,6 +1,10 @@
+ {{ if $threaded }} $comment
- $mail.from_name $mail.date + $mail.from_name + $mail.date
diff --git a/view/theme/quattro/profile_vcard.tpl b/view/theme/quattro/profile_vcard.tpl index 7cd02f1648..cbb7dcc745 100644 --- a/view/theme/quattro/profile_vcard.tpl +++ b/view/theme/quattro/profile_vcard.tpl @@ -45,7 +45,9 @@ {{ if $marital }}
$marital
$profile.marital
{{ endif }} - {{ if $homepage }}
$homepage
$profile.homepage
{{ endif }} + {{ if $homepage }}
$homepage
$profile.homepage
{{ endif }} {{ inc diaspora_vcard.tpl }}{{ endinc }} diff --git a/view/theme/quattro/search_item.tpl b/view/theme/quattro/search_item.tpl index 80d6678fb3..e207484dc8 100644 --- a/view/theme/quattro/search_item.tpl +++ b/view/theme/quattro/search_item.tpl @@ -42,7 +42,7 @@
- $item.name $item.ago + $item.name $item.ago
diff --git a/view/theme/quattro/wall_item.tpl b/view/theme/quattro/wall_item.tpl index 411879def3..731c2d2bfc 100644 --- a/view/theme/quattro/wall_item.tpl +++ b/view/theme/quattro/wall_item.tpl @@ -42,7 +42,11 @@
- $item.name $item.ago + $item.name + $item.ago
diff --git a/view/theme/quattro/wall_thread.tpl b/view/theme/quattro/wall_thread.tpl index 01738b666b..757f175468 100644 --- a/view/theme/quattro/wall_thread.tpl +++ b/view/theme/quattro/wall_thread.tpl @@ -64,7 +64,7 @@
- $item.name $item.ago + $item.name $item.ago
diff --git a/view/theme/quattro/wallwall_item.tpl b/view/theme/quattro/wallwall_item.tpl index 2e3cf821fb..e26b186360 100644 --- a/view/theme/quattro/wallwall_item.tpl +++ b/view/theme/quattro/wallwall_item.tpl @@ -46,7 +46,7 @@
- $item.name $item.ago + $item.name $item.ago
$item.to $item.owner_name $item.vwall
diff --git a/view/theme/quattro/wallwall_thread.tpl b/view/theme/quattro/wallwall_thread.tpl index 93a8838ebd..4589390089 100644 --- a/view/theme/quattro/wallwall_thread.tpl +++ b/view/theme/quattro/wallwall_thread.tpl @@ -69,7 +69,11 @@
- $item.name $item.ago + $item.name + $item.ago
$item.to $item.owner_name $item.vwall
diff --git a/view/wall_item.tpl b/view/wall_item.tpl index e278294315..e4eabb9e5c 100644 --- a/view/wall_item.tpl +++ b/view/wall_item.tpl @@ -24,7 +24,7 @@
$item.name -
$item.ago
+
$item.ago
diff --git a/view/wall_thread.tpl b/view/wall_thread.tpl index db7321466e..f64f2e44a0 100644 --- a/view/wall_thread.tpl +++ b/view/wall_thread.tpl @@ -31,7 +31,7 @@
$item.name -
$item.ago
+
$item.ago
diff --git a/view/wallwall_item.tpl b/view/wallwall_item.tpl index d7df45cfae..e8044532a3 100644 --- a/view/wallwall_item.tpl +++ b/view/wallwall_item.tpl @@ -29,7 +29,7 @@
$item.name $item.to $item.owner_name $item.vwall
-
$item.ago
+
$item.ago
$item.title
diff --git a/view/wallwall_thread.tpl b/view/wallwall_thread.tpl index 15c016c16c..68bb3bc9d5 100644 --- a/view/wallwall_thread.tpl +++ b/view/wallwall_thread.tpl @@ -36,7 +36,7 @@
$item.name $item.to $item.owner_name $item.vwall
-
$item.ago
+
$item.ago
$item.title