diff options
author | habeascodice <habeascodice@federated.social> | 2014-10-09 20:47:29 -0700 |
---|---|---|
committer | habeascodice <habeascodice@federated.social> | 2014-10-09 20:47:29 -0700 |
commit | 328ed8bb1b5f73626a032091a78609aea312f5ae (patch) | |
tree | 1cb3dc14a29e42ce31ef9c4733b085dd7d410181 /mod/webpages.php | |
parent | 1b0b847fc80827022c513a74a7fa817c7d640da0 (diff) | |
parent | c78227292709f8f36206c7234dbf3548e476d442 (diff) | |
download | volse-hubzilla-328ed8bb1b5f73626a032091a78609aea312f5ae.tar.gz volse-hubzilla-328ed8bb1b5f73626a032091a78609aea312f5ae.tar.bz2 volse-hubzilla-328ed8bb1b5f73626a032091a78609aea312f5ae.zip |
Merge remote branch 'upstream/master'
Diffstat (limited to 'mod/webpages.php')
-rw-r--r-- | mod/webpages.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mod/webpages.php b/mod/webpages.php index efaf3c4bf..341e75a0c 100644 --- a/mod/webpages.php +++ b/mod/webpages.php @@ -81,6 +81,8 @@ function webpages_content(&$a) { require_once('include/conversation.php'); $o = profile_tabs($a,true); + $o .= '<div class="generic-content-wrapper">'; + $o .= '<h2>' . t('Webpages') . '</h2>'; $x = array( @@ -95,7 +97,7 @@ function webpages_content(&$a) { 'mimetype' => $mimetype, 'layout' => $layout, ); - + if($_REQUEST['title']) $x['title'] = $_REQUEST['title']; if($_REQUEST['body']) @@ -105,7 +107,6 @@ function webpages_content(&$a) { $o .= 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. //TODO - this should be replaced with pagelist_widget @@ -142,5 +143,6 @@ function webpages_content(&$a) { )); + $o .= '</div>'; } |