diff options
author | Thomas Willingham <beardyunixer@beardyunixer.com> | 2014-10-11 15:42:31 +0100 |
---|---|---|
committer | Thomas Willingham <beardyunixer@beardyunixer.com> | 2014-10-11 15:42:31 +0100 |
commit | d132646915a3cf500215e7323b29a3e26670be10 (patch) | |
tree | efcc2924b16647ec3c3d72c57384518a00a67089 /mod/webpages.php | |
parent | 2e2f101e0b0f3eb7e9b601c725e192b55202face (diff) | |
download | volse-hubzilla-d132646915a3cf500215e7323b29a3e26670be10.tar.gz volse-hubzilla-d132646915a3cf500215e7323b29a3e26670be10.tar.bz2 volse-hubzilla-d132646915a3cf500215e7323b29a3e26670be10.zip |
Unbreak webpages
Diffstat (limited to 'mod/webpages.php')
-rw-r--r-- | mod/webpages.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mod/webpages.php b/mod/webpages.php index 2c3cc36ea..6fee8b414 100644 --- a/mod/webpages.php +++ b/mod/webpages.php @@ -81,9 +81,6 @@ 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( 'webpage' => ITEM_WEBPAGE, @@ -129,6 +126,7 @@ function webpages_content(&$a) { $url = z_root() . "/editwebpage/" . $which; // This isn't pretty, but it works. Until I figure out what to do with the UI, it's Good Enough(TM). return $o . replace_macros(get_markup_template("webpagelist.tpl"), array( + '$listtitle = t('Webpages'), '$baseurl' => $url, '$edit' => t('Edit'), '$pages' => $pages, |