Browse Source

Fix ZF-12206: Zend_Form_Label_Decorator: Missing option in docblock. Patch by Frank Brückner.

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@24846 44c647ce-9c0f-0410-b52a-842ac1e357ba
rob 13 years ago
parent
commit
d4f47631b1
1 changed files with 2 additions and 1 deletions
  1. 2 1
      library/Zend/Form/Decorator/Label.php

+ 2 - 1
library/Zend/Form/Decorator/Label.php

@@ -29,8 +29,9 @@ require_once 'Zend/Form/Decorator/Abstract.php';
  * - separator: separator to use between label and content (defaults to PHP_EOL)
  * - separator: separator to use between label and content (defaults to PHP_EOL)
  * - placement: whether to append or prepend label to content (defaults to prepend)
  * - placement: whether to append or prepend label to content (defaults to prepend)
  * - tag: if set, used to wrap the label in an additional HTML tag
  * - tag: if set, used to wrap the label in an additional HTML tag
+ * - tagClass: if tag option is set, used to add a class to the label wrapper
  * - opt(ional)Prefix: a prefix to the label to use when the element is optional
  * - opt(ional)Prefix: a prefix to the label to use when the element is optional
- * - opt(iona)lSuffix: a suffix to the label to use when the element is optional
+ * - opt(ional)Suffix: a suffix to the label to use when the element is optional
  * - req(uired)Prefix: a prefix to the label to use when the element is required
  * - req(uired)Prefix: a prefix to the label to use when the element is required
  * - req(uired)Suffix: a suffix to the label to use when the element is required
  * - req(uired)Suffix: a suffix to the label to use when the element is required
  *
  *