]> source.dussan.org Git - nextcloud-server.git/commitdiff
Do not show the hint when it's the same as the message
authorJoas Schilling <nickvergessen@owncloud.com>
Wed, 1 Jun 2016 11:34:57 +0000 (13:34 +0200)
committerJoas Schilling <nickvergessen@owncloud.com>
Wed, 1 Jun 2016 11:34:57 +0000 (13:34 +0200)
lib/private/legacy/template.php

index ce3b3dba38d5ed6dcc485b198e3ee6d0f46ee956..5023e3a60c801bbaf93a02be9723fb388cd67c99 100644 (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));