gforge-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gforge-commits] gforge/www/account login.php, 1.14, 1.15 pending-resend


From: gsmet
Subject: [Gforge-commits] gforge/www/account login.php, 1.14, 1.15 pending-resend.php, 1.6, 1.7 lostpw.php, 1.12, 1.13 unsubscribe.php, 1.7, 1.8 change_pw.php, 1.6, 1.7 register.php, 1.21, 1.22 change_email.php, 1.10, 1.11
Date: Fri, 08 Oct 2004 16:37:40 -0500

Update of /cvsroot/gforge/gforge/www/account
In directory db.perdue.net:/tmp/cvs-serv5893/www/account

Modified Files:
        login.php pending-resend.php lostpw.php unsubscribe.php 
        change_pw.php register.php change_email.php 
Log Message:
fixed a lot of malformed strings
fixed missing $ in variable name
fixed some parse errors

Index: login.php
===================================================================
RCS file: /cvsroot/gforge/gforge/www/account/login.php,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- login.php   27 Aug 2004 17:28:11 -0000      1.14
+++ login.php   8 Oct 2004 21:37:37 -0000       1.15
@@ -91,7 +91,7 @@
        } else {
                echo '<h2 style="color:red">'. $feedback .'</h2>';
                if ($userstatus == "D") {
-                       echo $Language->getText('account_login', 
'deleted_account', $GLOBALS[sys_name]);
+                       echo $Language->getText('account_login', 
'deleted_account', $GLOBALS['sys_name']);
                }
        } //end else
 

Index: pending-resend.php
===================================================================
RCS file: /cvsroot/gforge/gforge/www/account/pending-resend.php,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- pending-resend.php  27 Aug 2004 17:28:12 -0000      1.6
+++ pending-resend.php  8 Oct 2004 21:37:37 -0000       1.7
@@ -40,7 +40,7 @@
                );
        }
        $u->sendRegistrationEmail();
-       $HTML->header(array(title=>"Account Pending Verification"));
+       $HTML->header(array('title'=>"Account Pending Verification"));
        
        ?>
 

Index: lostpw.php
===================================================================
RCS file: /cvsroot/gforge/gforge/www/account/lostpw.php,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- lostpw.php  8 Oct 2004 20:31:31 -0000       1.12
+++ lostpw.php  8 Oct 2004 21:37:37 -0000       1.13
@@ -48,9 +48,9 @@
                exit_error('Error',$u->getErrorMessage());
        } else {
 
-               $message = stripcslashes($Language->getText('account_lostpw', 
'message', array($GLOBALS['HTTP_HOST'], $confirm_hash, $GLOBALS[sys_name])));
+               $message = stripcslashes($Language->getText('account_lostpw', 
'message', array($GLOBALS['HTTP_HOST'], $confirm_hash, $GLOBALS['sys_name'])));
 
-               
util_send_message($u->getEmail(),$Language->getText('account_lostpw', 
'subject', $GLOBALS[sys_name]),$message);
+               
util_send_message($u->getEmail(),$Language->getText('account_lostpw', 
'subject', $GLOBALS['sys_name']),$message);
 
                $HTML->header(array('title'=>"Lost Password 
Confirmation",'pagename'=>'account_lostpw'));
 
@@ -78,7 +78,7 @@
 </p>
 </form>
 
-<p><a href="/"><?php echo $Language->getText('general', 'return', 
$GLOBALS[sys_name]); ?></a></p>
+<p><a href="/"><?php echo $Language->getText('general', 'return', 
$GLOBALS['sys_name']); ?></a></p>
 
 <?php
 

Index: unsubscribe.php
===================================================================
RCS file: /cvsroot/gforge/gforge/www/account/unsubscribe.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- unsubscribe.php     27 Aug 2004 17:28:12 -0000      1.7
+++ unsubscribe.php     8 Oct 2004 21:37:37 -0000       1.8
@@ -72,7 +72,7 @@
 </p>
 
 <p>
-<a href="/"><?php echo $Language->getText('general', 'return', 
$GLOBALS[sys_name]); ?></a>
+<a href="/"><?php echo $Language->getText('general', 'return', 
$GLOBALS['sys_name']); ?></a>
 </p>
 
 <?php

Index: change_pw.php
===================================================================
RCS file: /cvsroot/gforge/gforge/www/account/change_pw.php,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- change_pw.php       27 Aug 2004 17:28:11 -0000      1.6
+++ change_pw.php       8 Oct 2004 21:37:38 -0000       1.7
@@ -65,10 +65,10 @@
                );
        }
 
-       
site_user_header(array(title=>$Language->getText('account_change_pw_changed','title')));
+       
site_user_header(array('title'=>$Language->getText('account_change_pw_changed','title')));
        ?>
 
-       <?php echo $Language->getText('account_change_pw', 'confirmation', 
$GLOBALS[sys_name]); ?>
+       <?php echo $Language->getText('account_change_pw', 'confirmation', 
$GLOBALS['sys_name']); ?>
 
        <p>
        <?php echo 
$Language->getText('account_change_pw_changed','return_to',array('<a 
href="/account/">','</a>')) ?>
@@ -77,7 +77,7 @@
        <?php
 } else { 
        // Show change form
-       
site_user_header(array(title=>$Language->getText('account_change_pw','title')));
+       
site_user_header(array('title'=>$Language->getText('account_change_pw','title')));
        ?>
 
        <form action="<?php echo $PHP_SELF; ?>" method="post">

Index: register.php
===================================================================
RCS file: /cvsroot/gforge/gforge/www/account/register.php,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -d -r1.21 -r1.22
--- register.php        27 Aug 2004 17:28:12 -0000      1.21
+++ register.php        8 Oct 2004 21:37:38 -0000       1.22
@@ -103,7 +103,7 @@
 <?php echo $Language->getText('account_register','ccode'); ?><br />
 <?php echo html_get_ccode_popup('ccode', $ccode); ?>
 <p>
-@<?php echo $Language->getText('account_register','emailaddr', 
$GLOBALS[sys_users_host]); ?>
+@<?php echo $Language->getText('account_register','emailaddr', 
$GLOBALS['sys_users_host']); ?>
 <br /><input size=30 type="text" name="email" value="<?php print($email); ?>">
 <p>
 <?php

Index: change_email.php
===================================================================
RCS file: /cvsroot/gforge/gforge/www/account/change_email.php,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- change_email.php    27 Aug 2004 17:28:11 -0000      1.10
+++ change_email.php    8 Oct 2004 21:37:38 -0000       1.11
@@ -50,9 +50,9 @@
                );
        }
 
-       $message = stripcslashes($Language->getText('account_change_email', 
'message', array($GLOBALS[HTTP_HOST], $confirm_hash, $GLOBALS[sys_name])));
+       $message = stripcslashes($Language->getText('account_change_email', 
'message', array($GLOBALS[HTTP_HOST], $confirm_hash, $GLOBALS['sys_name'])));
 
-       util_send_message($newemail,$Language->getText('account_change_email', 
'subject', $GLOBALS[sys_name]),$message);
+       util_send_message($newemail,$Language->getText('account_change_email', 
'subject', $GLOBALS['sys_name']),$message);
 
        
site_user_header(array('title'=>$Language->getText('account_change_email_confirm','title')));
 





reply via email to

[Prev in Thread] Current Thread [Next in Thread]