diff options
author | friendica <info@friendica.com> | 2014-10-09 18:39:07 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-10-09 18:39:07 -0700 |
commit | c78227292709f8f36206c7234dbf3548e476d442 (patch) | |
tree | 1cb3dc14a29e42ce31ef9c4733b085dd7d410181 /mod/webpages.php | |
parent | effc8960c3f55f687806b890fdf6252852b08011 (diff) | |
parent | 77fc267f738727ec1c503bd68470014a14c1b621 (diff) | |
download | volse-hubzilla-c78227292709f8f36206c7234dbf3548e476d442.tar.gz volse-hubzilla-c78227292709f8f36206c7234dbf3548e476d442.tar.bz2 volse-hubzilla-c78227292709f8f36206c7234dbf3548e476d442.zip |
Merge https://github.com/friendica/red into pending_merge
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>'; } |