aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-01-16 08:55:42 +0100
committerMario Vavti <mario@mariovavti.com>2018-01-16 08:55:42 +0100
commit9aadcb0bd40a8f773dc164f7dadc8c238fff9954 (patch)
treebd15059a020152b5dc59c265e22a27251efe0de4 /Zotlabs
parent746ea5a3691a67ceb176352e8b6fcfe0f2dc99d6 (diff)
parent03f692f24fe543c740e5443223d8084b9ca0c4de (diff)
downloadvolse-hubzilla-9aadcb0bd40a8f773dc164f7dadc8c238fff9954.tar.gz
volse-hubzilla-9aadcb0bd40a8f773dc164f7dadc8c238fff9954.tar.bz2
volse-hubzilla-9aadcb0bd40a8f773dc164f7dadc8c238fff9954.zip
Merge remote-tracking branch 'mike/master' into dev
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Lib/Apps.php1
-rw-r--r--Zotlabs/Module/Articles.php3
2 files changed, 3 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Apps.php b/Zotlabs/Lib/Apps.php
index 457b85b62..d2a307fd5 100644
--- a/Zotlabs/Lib/Apps.php
+++ b/Zotlabs/Lib/Apps.php
@@ -221,6 +221,7 @@ class Apps {
static public function translate_system_apps(&$arr) {
$apps = array(
'Apps' => t('Apps'),
+ 'Articles' => t('Articles'),
'Cards' => t('Cards'),
'Admin' => t('Site Admin'),
'Report Bug' => t('Report Bug'),
diff --git a/Zotlabs/Module/Articles.php b/Zotlabs/Module/Articles.php
index 25daca81d..e2e0fed5d 100644
--- a/Zotlabs/Module/Articles.php
+++ b/Zotlabs/Module/Articles.php
@@ -35,7 +35,7 @@ class Articles extends \Zotlabs\Web\Controller {
return;
}
- nav_set_selected(t('Cards'));
+ nav_set_selected(t('Articles'));
head_add_link([
'rel' => 'alternate',
@@ -102,6 +102,7 @@ class Articles extends \Zotlabs\Web\Controller {
'permissions' => $channel_acl,
'showacl' => (($is_owner) ? true : false),
'visitor' => true,
+ 'body' => '[summary][/summary]',
'hide_location' => false,
'hide_voting' => false,
'profile_uid' => intval($owner),