diff options
Diffstat (limited to 'frontend/classes/forms.php')
-rw-r--r-- | frontend/classes/forms.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/classes/forms.php b/frontend/classes/forms.php index daa95cf..6e5b43e 100644 --- a/frontend/classes/forms.php +++ b/frontend/classes/forms.php @@ -7,7 +7,7 @@ abstract class form_element { $this->label=htmlentities($label); } public function output($rw=true, $val=false) { - echo "$this->label: "; + echo "<b>$this->label:</b> "; } public function process() { return isset($_REQUEST[$this->htmlname])?$_REQUEST[$this->htmlname]:false; |