diff --git a/classes/HTML.php b/classes/HTML.php
index 0bc4207..6d36120 100644
--- a/classes/HTML.php
+++ b/classes/HTML.php
@@ -65,11 +65,6 @@ class HTML extends Object
{
$label = $this->label(array('for' => $attributes['name']), $attributes['label']);
- if (!isset($attributes['title']))
- {
- $attributes['title'] = $attributes['label'];
- }
-
unset($attributes['label']);
return $label . $this->$method($attributes);
diff --git a/jar.php b/jar.php
index b84b131..d20a906 100755
--- a/jar.php
+++ b/jar.php
@@ -4224,11 +4224,6 @@ class HTML extends Object
{
$label = $this->label(array('for' => $attributes['name']), $attributes['label']);
- if (!isset($attributes['title']))
- {
- $attributes['title'] = $attributes['label'];
- }
-
unset($attributes['label']);
return $label . $this->$method($attributes);