diff --git a/pandora_console/include/class/HTML.class.php b/pandora_console/include/class/HTML.class.php index da6e63285a..e47aa40b7c 100644 --- a/pandora_console/include/class/HTML.class.php +++ b/pandora_console/include/class/HTML.class.php @@ -935,6 +935,12 @@ class HTML $output_head = '
'; + if (isset($form['title']) === true && empty($form['title']) === false) { + $output_head .= '
'; + $output_head .= ''.$form['title'].''; + $output_head .= '
'; + } + if ($return === false) { echo $output_head; }