If you create a new visibility rule but without description (this is possible because the field is not required), you can't access anymore to the created rule.

To correct this, you must replace the line 534 in includes/display-edit.inc :

'title' => $access_description,

by :

'title' => (!empty($access_description)) ? $access_description : t('Unknown rule'),

Comments

sinasquax’s picture

Forgot to say that this can be avoided also by setting the description field to required.

merlinofchaos’s picture

Status: Active » Fixed

I committed a patch to CTools that fixes this. So far as I know it was only one particular rule that could actually have no description.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.