Bug 11587: get rid of warnings generated by IsSuperLibrarian with anonymous sessions
authorMark Tompsett <mtompset@hotmail.com>
Tue, 21 Jan 2014 05:41:00 +0000 (00:41 -0500)
committerGalen Charlton <gmc@esilibrary.com>
Mon, 10 Mar 2014 16:05:57 +0000 (16:05 +0000)
commitbf3b1aac7b7bc422bea26bb2c045be69d93ef0bf
tree9539e4aac901cfd75b207077a5404311bd12da89
parent850e7e58352fd1fcb2772308cbfc6375b6a45735
Bug 11587: get rid of warnings generated by IsSuperLibrarian with anonymous sessions

This corrects line 1250 of C4/Context.pm to be:
    return ($userenv->{flags}//0) % 2;
And thus avoids an uninitialized value used in the modulus.

TEST PLAN
---------
1) Apply the first patch (to update t/Context.t)
2) prove -v t/Context.t
-- This should fail tests 7 and 8
3) Apply this patch (to fix C4/Context.pm)
4) prove -v t/Context.t
-- All tests should succeed

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com>
Signed-off-by: Galen Charlton <gmc@esilibrary.com>
C4/Context.pm