/**
  * display HTML header
  *
  * @param PMA_error $error the error
  *
  * @return void
  */
 protected function dispPageStart($error = null)
 {
     PMA_Response::getInstance()->disable();
     echo '<html><head><title>';
     if ($error) {
         echo $error->getTitle();
     } else {
         echo 'phpMyAdmin error reporting page';
     }
     echo '</title></head>';
 }
 /**
  * display HTML header
  *
  * @uses    PMA_Error::getTitle()
  * @param   PMA_error $error
  */
 protected function _dispPageStart($error = null)
 {
     echo '<html><head><title>';
     if ($error) {
         echo $error->getTitle();
     } else {
         echo 'phpMyAdmin error reporting page';
     }
     echo '</title></head>';
 }