Removed unused variables
Dieser Commit ist enthalten in:
Ursprung
2e5ac861c7
Commit
f9f5a75a7b
1 geänderte Dateien mit 0 neuen und 2 gelöschten Zeilen
|
@ -35,7 +35,6 @@ class Msd_Form_Decorator_Default extends Msd_Form_Decorator_Abstract
|
||||||
}
|
}
|
||||||
$label = $this->buildLabel();
|
$label = $this->buildLabel();
|
||||||
$input = $this->buildInput();
|
$input = $this->buildInput();
|
||||||
$errors = strip_tags($this->buildErrors());
|
|
||||||
$desc = $this->buildDescription();
|
$desc = $this->buildDescription();
|
||||||
$descOutput = '';
|
$descOutput = '';
|
||||||
if ($desc != '') {
|
if ($desc != '') {
|
||||||
|
@ -43,7 +42,6 @@ class Msd_Form_Decorator_Default extends Msd_Form_Decorator_Abstract
|
||||||
}
|
}
|
||||||
$attribs = $element->getAttribs();
|
$attribs = $element->getAttribs();
|
||||||
$output = '<tr>';
|
$output = '<tr>';
|
||||||
$rowclass = '';
|
|
||||||
if (isset($attribs['rowclass'])) {
|
if (isset($attribs['rowclass'])) {
|
||||||
$rowclass = $attribs['rowclass'];
|
$rowclass = $attribs['rowclass'];
|
||||||
$output = '<tr class="' . $rowclass . '">';
|
$output = '<tr class="' . $rowclass . '">';
|
||||||
|
|
Laden …
In neuem Issue referenzieren