diff options
| author | fisharebest <fisharebest@gmail.com> | 2010-06-13 08:55:23 +0000 |
|---|---|---|
| committer | fisharebest <fisharebest@gmail.com> | 2010-06-13 08:55:23 +0000 |
| commit | d03edd859e6800bc9537bca0b094ff9206384fc4 (patch) | |
| tree | be6e32bd13fb58f10fcf42221d1342c8490d8bc6 /login.php | |
| parent | 88d829472f070922910d3d1cf5fb3de66b35de5e (diff) | |
| download | webtrees-d03edd859e6800bc9537bca0b094ff9206384fc4.tar.gz webtrees-d03edd859e6800bc9537bca0b094ff9206384fc4.tar.bz2 webtrees-d03edd859e6800bc9537bca0b094ff9206384fc4.zip | |
Fix: contextual help not sticking
Diffstat (limited to 'login.php')
| -rw-r--r-- | login.php | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -196,12 +196,10 @@ $tab=0; // initialize tab index <td class="topbottombar" colspan="2"> <input type="submit" tabindex="<?php echo ++$tab; ?>" value="<?php print i18n::translate('Login'); ?>" /> <?php - if ($SHOW_CONTEXT_HELP) { - if ($REQUIRE_AUTHENTICATION) { - echo help_link('login_buttons_aut'); - } else { - echo help_link('login_buttons'); - } + if ($REQUIRE_AUTHENTICATION) { + echo help_link('login_buttons_aut'); + } else { + echo help_link('login_buttons'); } ?> </td> |
