aboutsummaryrefslogtreecommitdiffstats
path: root/mod/webpages.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-08-01 14:31:30 -0700
committerfriendica <info@friendica.com>2013-08-01 14:31:30 -0700
commit7d00f61ceb6dc04329a703987682ab49d71a2531 (patch)
tree9207848175dcb48864e04994b2c12e30898bb8c1 /mod/webpages.php
parent005f2cbda1f0678a4e2bafa674aa0ba7507e562d (diff)
parent31ffabc3d26305fd835aa56411c03a96e28df064 (diff)
downloadvolse-hubzilla-7d00f61ceb6dc04329a703987682ab49d71a2531.tar.gz
volse-hubzilla-7d00f61ceb6dc04329a703987682ab49d71a2531.tar.bz2
volse-hubzilla-7d00f61ceb6dc04329a703987682ab49d71a2531.zip
Merge pull request #86 from beardy-unixer/master
"Can edit my webpages" permissions
Diffstat (limited to 'mod/webpages.php')
-rw-r--r--mod/webpages.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/mod/webpages.php b/mod/webpages.php
index cf6a99d1e..f2026ea0b 100644
--- a/mod/webpages.php
+++ b/mod/webpages.php
@@ -60,10 +60,12 @@ $r = q("select * from item_id where uid = %d and service = 'WEBPAGE'",
}
-
+//Build the base URL for edit links
+ $url = z_root() . "/editwebpage/" . $a->profile['channel_address'];
// 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(
- '$editlink' => t('Edit'),
+ '$baseurl' => $url,
+ '$edit' => t('Edit'),
'$pages' => $pages,
'$channel' => $a->profile['channel_address'],
'$view' => t('View'),