From 3b19d00ae9ca565ed1d6fa4d7df22efed8c7d6a5 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 14 Jan 2009 02:34:55 -0500 Subject: [PATCH] Remove block form functions from lib/util.php --- lib/util.php | 36 ------------------------------------ 1 file changed, 36 deletions(-) diff --git a/lib/util.php b/lib/util.php index f9ba73d6f0..8c6cddbd9e 100644 --- a/lib/util.php +++ b/lib/util.php @@ -1700,39 +1700,3 @@ function common_compatible_license($from, $to) // XXX: better compatibility check needed here! return ($from == $to); } - -/* These are almost identical, so we use a helper function */ - -function common_block_form($profile, $args=null) -{ - common_blocking_form('block', _('Block'), $profile, $args); -} - -function common_unblock_form($profile, $args=null) -{ - common_blocking_form('unblock', _('Unblock'), $profile, $args); -} - -function common_blocking_form($type, $label, $profile, $args=null) -{ - common_element_start('form', array('id' => $type . '-' . $profile->id, - 'method' => 'post', - 'class' => $type, - 'action' => common_local_url($type))); - common_hidden('token', common_session_token()); - common_element('input', array('id' => $type . 'to-' . $profile->id, - 'name' => $type . 'to', - 'type' => 'hidden', - 'value' => $profile->id)); - common_element('input', array('type' => 'submit', - 'class' => 'submit', - 'name' => $type, - 'value' => $label)); - if ($args) { - foreach ($args as $k => $v) { - common_hidden('returnto-' . $k, $v); - } - } - common_element_end('form'); - return; -}