Skip to content

Commit

Permalink
Don't display in publish form for new entries
Browse files Browse the repository at this point in the history
  • Loading branch information
cz committed May 20, 2011
1 parent f1528a3 commit 2234aa6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fields/field.memberclaim.php
Expand Up @@ -89,7 +89,7 @@ public function displayPublishPanel(
$postfix = null,
$entry_id = null
) {
$value = $data['count'];
$value = (!is_null($data['count']) ? $data['count'] : '0');
$label = Widget::Label($this->get('label'));

$p = new XMLElement('p', $value);
Expand Down

0 comments on commit 2234aa6

Please sign in to comment.