don't show form if subscription can't be found (weirdly)

darcs-hash:20081212055713-84dde-1b2aa99861ee0ab7c63a48152a5590b4d2f360d9.gz
This commit is contained in:
Evan Prodromou 2008-12-12 00:57:13 -05:00
parent 816f87fd27
commit fd13272206
1 changed files with 5 additions and 0 deletions

View File

@ -56,8 +56,13 @@ class SubscriptionsAction extends GalleryAction {
class SubscriptionsList extends ProfileList {
function show_owner_controls($profile) {
$sub = Subscription::pkeyGet(array('subscriber' => $this->owner->id,
'subscribed' => $profile->id));
if (!$sub) {
return;
}
common_element_start('form', array('id' => 'subedit-' . $profile->id,
'method' => 'post',
'class' => 'subedit',