Minor - removing whitespaces.

1.9.x
Julio Montoya 11 years ago
parent 12eb9c3b0c
commit 6139f9d2c6
  1. 10
      main/inc/lib/pear/HTML/QuickForm/label.php

@ -1,4 +1,4 @@
<?php
<?php
/**
* HTML class for static data
* @example $form->addElement('label', 'My label', 'Content');
@ -18,7 +18,7 @@ require_once 'HTML/QuickForm/static.php';
* @since 3.0
* @deprecated Please use the templates rather than add raw HTML via this element
*/
class HTML_QuickForm_label extends HTML_QuickForm_static
class HTML_QuickForm_label extends HTML_QuickForm_static
{
// {{{ constructor
@ -47,7 +47,7 @@ class HTML_QuickForm_label extends HTML_QuickForm_static
function accept(&$renderer, $required=false, $error=null) {
$renderer->renderHtml($this);
}
function toHtml() {
$for = $this->getLabelFor();
return '<div class="control-group ">
@ -56,11 +56,11 @@ class HTML_QuickForm_label extends HTML_QuickForm_static
'.HTML_QuickForm_static::toHtml().'
</div>
</div>
';
} //end func toHtml
// }}}
} //end class HTML_QuickForm_html

Loading…
Cancel
Save