Contents weren't being passed in when a label was present
This commit is contained in:
parent
3babea7dea
commit
2a31127152
2 changed files with 2 additions and 2 deletions
|
@ -75,7 +75,7 @@ class HTML extends Object
|
|||
$label = $this->label($attributes['label']);
|
||||
}
|
||||
|
||||
return $label . $this->$method($attributes);
|
||||
return $label . $this->$method($attributes, $contents);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
2
jar.php
2
jar.php
|
@ -4234,7 +4234,7 @@ class HTML extends Object
|
|||
$label = $this->label($attributes['label']);
|
||||
}
|
||||
|
||||
return $label . $this->$method($attributes);
|
||||
return $label . $this->$method($attributes, $contents);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue