Do not show the hint when it's the same as the message

This commit is contained in:
Joas Schilling 2016-06-01 13:34:57 +02:00
parent 7b4459d28d
commit 13892417c4
No known key found for this signature in database
GPG Key ID: 70A0B324C41C0946
1 changed files with 5 additions and 0 deletions

View File

@ -316,6 +316,11 @@ class OC_Template extends \OC\Template\Base {
* @param string $hint An optional hint message - needs to be properly escaped
*/
public static function printErrorPage( $error_msg, $hint = '' ) {
if ($error_msg === $hint) {
// If the hint is the same as the message there is no need to display it twice.
$hint = '';
}
try {
$content = new \OC_Template( '', 'error', 'error', false );
$errors = array(array('error' => $error_msg, 'hint' => $hint));