]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
conflict resolution after pulling from mikenz
authorEvan Prodromou <evan@prodromou.name>
Sun, 13 Jul 2008 21:56:01 +0000 (17:56 -0400)
committerEvan Prodromou <evan@prodromou.name>
Sun, 13 Jul 2008 21:56:01 +0000 (17:56 -0400)
darcs-hash:20080713215601-84dde-371d54221d9ffbed500e8d3c9e0ad4bb15bd5c30.gz

actions/imsettings.php
actions/login.php

index 368cd8b9e6b26dd3f2dfd48460bb927b5806f647..904516f24d04cfad323b5d3180b8c05a9d2f6719 100644 (file)
@@ -52,9 +52,7 @@ class ImsettingsAction extends SettingsAction {
                                common_element_start('p');
                                common_element('span', 'address unconfirmed', $confirm->address);
                                common_element('span', 'input_instructions',
-                                             sprintf(_('Awaiting confirmation on this address. Check your ' .
-                                               'Jabber/GTalk account for a message with further ' .
-                                               'instructions. (Did you add %s to your buddy list?)',
+                                                          sprintf(_('Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)',
                                  jabber_daemon_address())));
                                common_hidden('jabber', $confirm->address);
                                common_element_end('p');
index 003d6613f7425f6c954341aa01fca3d35e2cbc13..0f2dec1a41e38ba9403f4eedcde91b9a0b83e7ed 100644 (file)
@@ -109,10 +109,21 @@ class LoginAction extends Action {
        }
 
        function get_instructions() {
-               return _('Login with your username and password. ' .
-                                 'Don\'t have a username yet? ' .
-                                 '[Register](%%action.register%%) a new account, or ' .
-                                 'try [OpenID](%%action.openidlogin%%). ');
+               if (common_logged_in() &&
+                       !common_is_real_login() &&
+                       common_get_returnto())
+               {
+                       # rememberme logins have to reauthenticate before
+                       # changing any profile settings (cookie-stealing protection)
+                       return _('For security reasons, please re-enter your ' .
+                                        'user name and password ' .
+                                        'before changing your settings.');
+               } else {
+                       return _('Login with your username and password. ' .
+                                        'Don\'t have a username yet? ' .
+                                        '[Register](%%action.register%%) a new account, or ' .
+                                        'try [OpenID](%%action.openidlogin%%). ');
+               }
        }
 
        function show_top($error=NULL) {