aboutsummaryrefslogtreecommitdiffstats
path: root/mod/webpages.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2015-04-13 23:38:36 +0200
committerMario Vavti <mario@mariovavti.com>2015-04-13 23:38:36 +0200
commit865b602cf8b4eff5e7da00362df95e52e2fe4f77 (patch)
tree7d6cd6cbc2203d2c84c6bded4e80503327f91ac6 /mod/webpages.php
parent05f018e50943fd2f38742b061c7e6f0e4b34995a (diff)
downloadvolse-hubzilla-865b602cf8b4eff5e7da00362df95e52e2fe4f77.tar.gz
volse-hubzilla-865b602cf8b4eff5e7da00362df95e52e2fe4f77.tar.bz2
volse-hubzilla-865b602cf8b4eff5e7da00362df95e52e2fe4f77.zip
webpages appearence
Diffstat (limited to 'mod/webpages.php')
-rw-r--r--mod/webpages.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/mod/webpages.php b/mod/webpages.php
index a9cf61dd1..b4c4e6e4e 100644
--- a/mod/webpages.php
+++ b/mod/webpages.php
@@ -127,7 +127,7 @@ function webpages_content(&$a) {
if($_REQUEST['pagetitle'])
$x['pagetitle'] = $_REQUEST['pagetitle'];
- $o .= status_editor($a,$x);
+ $editor .= status_editor($a,$x);
// Get a list of webpages. We can't display all them because endless scroll makes that unusable,
// so just list titles and an edit link.
@@ -161,14 +161,17 @@ function webpages_content(&$a) {
$o .= replace_macros(get_markup_template('webpagelist.tpl'), array(
'$listtitle' => t('Webpages'),
'$baseurl' => $url,
+ '$create' => t('Create'),
'$edit' => t('Edit'),
+ '$delete' => t('Delete'),
'$pages' => $pages,
'$channel' => $which,
+ '$editor' => $editor,
'$view' => t('View'),
'$preview' => t('Preview'),
'$actions_txt' => t('Actions'),
'$pagelink_txt' => t('Page Link'),
- '$title_txt' => t('Title'),
+ '$title_txt' => t('Page Title'),
'$created_txt' => t('Created'),
'$edited_txt' => t('Edited')
));