[Koha-bugs] [Bug 14212] New: Add 'oldip' and 'newip' to different_ip message in auth.tt

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Sat May 16 23:02:12 CEST 2015


http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14212

            Bug ID: 14212
           Summary: Add 'oldip' and 'newip' to different_ip message in
                    auth.tt
 Change sponsored?: ---
           Product: Koha
           Version: unspecified
          Hardware: All
                OS: All
            Status: NEW
          Severity: enhancement
          Priority: P5 - low
         Component: Templates
          Assignee: oleonard at myacpl.org
          Reporter: barton at bywatersolutions.com
        QA Contact: testopia at bugs.koha-community.org

When IP addresses are changing frequently, users will be logged out and the
login screen will have the warning message "Error: IP address has changed.
Please log in again"

This is confusing  to users, and it is often unclear to the users that this is
a network issue, not a problem with with Koha. Furthermore, the library's IT
staff may claim that the IP addresses have not changed, which puts the user in
a very difficult position.

C4/Auth.pm defines the variables 'oldip' and 'newip' in addition to
'different_ip'.

I would suggest changing

[% IF ( different_ip ) %]
<div id="login_error"><strong>Error: </strong>IP address has changed, please
log in again </div>
[% END %]

to

[% IF ( different_ip ) %]
<div id="login_error"><strong>Error: </strong>IP address has changed from '[%
oldip %]' to '[% newip %]', please log in again </div>
[% END %]

This message gives users (and anyone supporting them) the evidence to back up
the claim that the IP address has changed.

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list