summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2008-12-08 12:09:31 -0500
committerEvan Prodromou <evan@controlyourself.ca>2008-12-08 12:09:31 -0500
commit17fd7b185054e260f0a9a2cedd264ff3ef43d725 (patch)
treeb0ba3cd7189135659a21e2fb0f5fbb03de797bdf /lib
parent5327d3f7ba87a1c81229cc9ec56c8d26f5dd6b50 (diff)
add returnto information to the block form
darcs-hash:20081208170931-5ed1f-e7c5853e6a222b04723f20c01ebaae15eeab3687.gz
Diffstat (limited to 'lib')
-rw-r--r--lib/util.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php
index fa8248dba..4d670edcc 100644
--- a/lib/util.php
+++ b/lib/util.php
@@ -2185,7 +2185,7 @@ function common_compatible_license($from, $to) {
return ($from == $to);
}
-function common_block_form($profile) {
+function common_block_form($profile, $args=NULL) {
common_element_start('form', array('id' => 'block-' . $profile->id,
'method' => 'post',
'class' => 'block',
@@ -2199,6 +2199,11 @@ function common_block_form($profile) {
'class' => 'submit',
'name' => 'block',
'value' => _('Block')));
+ if ($args) {
+ foreach ($args as $k => $v) {
+ common_hidden('returnto-' . $k, $v);
+ }
+ }
common_element_end('form');
return;
}