public function get($name)
 {
     try {
         return $this->_input->get($name);
     } catch (HTML_No_Such_Element_Attribute_Exception $e) {
         return parent::get($name);
     }
 }