[evolvis-commits] r16139: Adding h1 when missing.

mirabilos at evolvis.org mirabilos at evolvis.org
Tue Mar 1 00:55:53 CET 2011


Author: mirabilos
Date: 2011-03-01 00:55:53 +0100 (Tue, 01 Mar 2011)
New Revision: 16139

Modified:
   trunk/gforge_base/evolvisforge-5.1/src/www/account/index.php
   trunk/gforge_base/evolvisforge-5.1/src/www/account/pending-resend.php
Log:
Adding h1 when missing.

Modified: trunk/gforge_base/evolvisforge-5.1/src/www/account/index.php
===================================================================
--- trunk/gforge_base/evolvisforge-5.1/src/www/account/index.php	2011-02-28 23:55:50 UTC (rev 16138)
+++ trunk/gforge_base/evolvisforge-5.1/src/www/account/index.php	2011-02-28 23:55:53 UTC (rev 16139)
@@ -91,7 +91,9 @@
 	}
 }
 
-site_user_header(array('title'=>_('Account Maintenance')));
+$title = _('Account Maintenance');
+site_user_header(array('title'=>$title));
+echo '<h1>' . $title . '</h1>';
 
 echo '<form action="'.util_make_url('/account/').'" method="post">';
 echo '<input type="hidden" name="form_key" value="'.form_generate_key().'"/>';

Modified: trunk/gforge_base/evolvisforge-5.1/src/www/account/pending-resend.php
===================================================================
--- trunk/gforge_base/evolvisforge-5.1/src/www/account/pending-resend.php	2011-02-28 23:55:50 UTC (rev 16138)
+++ trunk/gforge_base/evolvisforge-5.1/src/www/account/pending-resend.php	2011-02-28 23:55:53 UTC (rev 16139)
@@ -56,7 +56,9 @@
 	exit;
 }
 
-$HTML->header(array('title'=>'Pending-resend'));
+$HTML->header(array('title'=>_('Resend confirmation email to a pending account')));
+echo '<h1>' . _('Resend confirmation email to a pending account') . '</h1>';
+
 if (forge_get_config('require_unique_email')) {
 	echo _('Fill in a user name or email address and click \'Submit\' to resend the confirmation email.');
 } else {



More information about the evolvis-commits mailing list