diff options
author | habeascodice <habeascodice@federated.social> | 2014-10-11 05:34:11 -0700 |
---|---|---|
committer | habeascodice <habeascodice@federated.social> | 2014-10-11 05:34:11 -0700 |
commit | bde8c6d39e1ccf7a53569cc652a62b5447d3243f (patch) | |
tree | 598928300196120d90a28aac79e57d213dd61779 /mod/webpages.php | |
parent | 7a106cf60cfa005ec6d8c35f922dc57b9af0175e (diff) | |
parent | 3d0d36b2bc6d134e1140b9fc8c40206be5bd7d2d (diff) | |
download | volse-hubzilla-bde8c6d39e1ccf7a53569cc652a62b5447d3243f.tar.gz volse-hubzilla-bde8c6d39e1ccf7a53569cc652a62b5447d3243f.tar.bz2 volse-hubzilla-bde8c6d39e1ccf7a53569cc652a62b5447d3243f.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..2c3cc36ea 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-styled">'; + $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>'; } |